📌  相关文章
📜  Linux 命令行搜索和替换所有文件中的字符串 - 任何代码示例

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

代码示例1
String Find and replace (folders/sub folders)
> grep -rl "old string" . | xargs sed -i 's/old string/new string/g'

 URL Find and replace  (folders/sub folders) 
> grep -rl "www\.google\.com" . | xargs sed -i 's/www\.google\.com/www\.yahoo\.com/g'