linux替换文件内容

Posted 小立攻城狮

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux替换文件内容相关的知识,希望对你有一定的参考价值。

使用sed命令

1、替换test.txt文件中的hello为hello world

set -i 's/hello/hello world/g' test.txt

2、替换当前目录下的所有文件中的hello为hello world

set -i 's/hello/hello world/g' ls

以上是关于linux替换文件内容的主要内容,如果未能解决你的问题,请参考以下文章

linux下批量查询文件内容字符串并替换

linux下批量替换文件内容

linux批量替换文件夹名,文件名,文件内容命令

linux文本替换,将文本b中内容替换到文本a中指定字符串之间

linux sed 替换

linux替换文件内容