[www@www ~]$ echo "include ([color=#FF0000]the is the result[/color])"|sed -n -e "/^include.*(.*)/s/include.*(\(.*\)).*$/\1/p"
[color=#FF0000]the is the result[/color]
------解决方案--------------------
1 # later cache the command line in config.status OPT_CMDLINE=`echo $@ | sed "s,-v ,,g; s,-v$,,g "` 多用在configure中,来缓存命令行。基本上可以理解为将-v去掉
------解决方案-------------------- 学习了。 单引号是强引用,对里面的引用不做扩展。双引号可以扩展变量
------解决方案-------------------- 每个都动手试试
------解决方案--------------------