grep -lrn ‘Ltwen.com’ src/ |xargs -i sed -i ‘s/Ltwen.com/Tengyue360.com/’ {}
grep -lrn ‘www.apache.org’ src/ |xargs -i -p sed -i ’4d’ {}
-p是询问是否执行后面的sed命令
-i是将前面的grep出的结果逐行的运行到sed中
#清空邮件中的队列
mailq |awk ‘{ if( length($1)==11 ) print $1 }’ |xargs -n1 -I @ sudo postsuper -d @
#逐行作为参数运行
cat push_check_list |xargs -n1 -I @ php-staging test1 ~/push.php @