shell 脚本替换文件中某个字符串

前端之家收集整理的这篇文章主要介绍了shell 脚本替换文件中某个字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

http://blog.csdn.net/lizhi200404520/article/details/7968483

1、将当前目录下包含jack串的文件中,jack字符串替换为tom

sed -i "s/jack/tom/g" `grep "jack" -rl ./`

2、将某个文件中的jack字符串替换为tom

sed -i "s/jack/tom/g" test.txt

原文链接:https://www.f2er.com/bash/391305.html

猜你在找的Bash相关文章