查找所有文件类型为php且文件名包含config大小写,
且文件内容oldstring替换为newstring
find -name '*.php' | grep -i config | xargs sed -i 's/oldstring/newstring/g'
查找所有文件类型为php且文件名包含config大小写,
且文件内容oldstring替换为newstring
find -name '*.php' | grep -i config | xargs sed -i 's/oldstring/newstring/g'