📌  相关文章
📜  如何在 mac 上使用 shell 脚本查找和替换文件中的字符串 - Shell-Bash 代码示例

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

代码示例1
# replaces ALL(g i.e. global) ouccurences of "original_string" with "new_string", 
# in the file file_name.ext_name
sed -i '' "s/original_string/new_string/g" file_name.ext_name