Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有许多具有以下文本的 php 文件:
“标题 1 / 副标题 2 / 副标题 3”
我需要用以下内容替换此文本:
“标题 1 / 副标题 3”
如何使用“sed”命令执行此操作?
谢谢你。
这应该足够了:
sed -i 's#Title 1 / Subtitle 2 / Subtitle 3#Title 1 / Subtitle 3#g' file*.php
sed 's#text#replace#g' file替换text为replaceallalone file。如果我们添加-i,它会使用替换的版本更新文件。
sed 's#text#replace#g' file
text
replace
file
-i