find /opt -regextype "posix-egrep" -regex ".*properties|.*js|.*jsg|.*vm|.*html" |while read L;do sed -i "s/www.baidu.com/www.qq.com/g" $L;done
把/opt下所有properties js jsg vm html文件中的baidu替换成qq
centos find 的正则表达写法
原文:http://zhukeqiang.blog.51cto.com/8692790/1876117