查找所有文件类型为php且文件名包含config大小写,\ 且文件内容oldstring替换为newstring
find -name '*.php' | grep -i config | xargs sed -i 's/oldstring/newstring/g'
Copy
本条目发布于[2020年3月31日](https://c4ys.com/archives/2106 "12:01")。属于[Linux](https://c4ys.com/archives/category/linux)分类。