用sed命令可以批量替换多个文件中的字符串。

  1. sed -i "s/old/new/g" `grep old -rl dir` 
  2. 【注】grep前的符号是shift+~ 
  3. 如果出现特殊字符,可以用\转义或者用\xnn,nn为特殊字符的16进制值。