mac 平台批处理替换文件中的某个字符串

grep -rl 'h/w' ./ | xargs sed -i "" 's/h/w/HW/g'

转自:https://segmentfault.com/a/1190000015583521

前言:
实际工作中遇到一个问题:需要在某一个文件下,将所有包含aaa字符串全部替换为bbb字符串。之前处理这种方式是用vim打开各个文件,进行编辑并批量替换。这次想用一个更方便的方法来实现,想到了sed命令。

实现用过过程中遇到了问题:

sed -i “s/aaa/111/g” test.txt

这条语句在linux平台下可以正常运行。但是在mac下运行会报错。
如下:

➜ practice sed -i "s/aaa/bbb/g" test.txt
sed: 1: "test.txt": undefined label 'est.txt'
查看sed命令:

man sed
............

 -i extension
         Edit files in-place, saving backups with the specified extension.  If a zero-length extension is given, no backup will be saved.  It is not recom-
         mended to give a zero-length extension when in-place editing files, as you risk corruption or partial content in situations where disk space is
         exhausted, etc.

从上面的解释可得出,-i 需要并且必须带一个字符串,用来备份源文件,并且这个字符串将会加在源文件名后面,构成备份文件名。
所以在mac下正确使用方式是这样的:

➜ practice sed -i "" "s/aaa/bbb/g" test.txt
➜ practice
另外,如果不想用-i参数,那么用如下的方法也可以实现

➜ practice sed "s/bbb/aaa/g" test.txt > test2.txt
➜ practice mv test2.txt test.txt
➜ practice
sed -i 的问题解决了,接下来就是实现某个文件夹的批量替换,实现的代码如下:

在当前目录下,将所有aaaModule都替换为bbbName
grep -rl 'aaaModule' ./ | xargs sed -i "" "s/aaaModule/bbbName/g"

-r 表示搜索子目录
-l 表示输出匹配的文件名

你可能感兴趣的:(mac 平台批处理替换文件中的某个字符串)