Skip to content

Instantly share code, notes, and snippets.

@xylcbd
Created September 18, 2018 07:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xylcbd/7628b6e592c9428e7382c68286e35357 to your computer and use it in GitHub Desktop.
Save xylcbd/7628b6e592c9428e7382c68286e35357 to your computer and use it in GitHub Desktop.

批量替换目录中所有文件的字符串

sed -i "s/zhangsan/lisi/g" `grep zhangsan -rl /modules`

-i 表示inplace edit,就地修改文件
-r 表示搜索子目录
-l 表示输出匹配的文件名
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment