📌  相关文章
📜  linux 递归替换文件中的字符串 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:01.401000             🧑  作者: Mango

代码示例3
find /home/www \( -type d -name .git -prune \) -o -type f -print0 | xargs -0 sed -i 's/subdomainA\.example\.com/subdomainB.example.com/g'