sed 命令复制替换两次

Posted

技术标签:

【中文标题】sed 命令复制替换两次【英文标题】:Sed command replicating substitution twice 【发布时间】:2021-08-14 09:03:06 【问题描述】:

我有一个简单的文件,内容存储在 temp.txt 中

Here I lay in the depths of hell waiting to be rescued by my charming warrior.

一旦我使用 sed 命令替换

sed -i "s/hell/HELL/p" ./temp.txt

这是我得到的结果

Here I lay in the depths of HELL waiting to be rescued by my charming warrior.
Here I lay in the depths of HELL waiting to be rescued by my charming warrior.

有什么建议吗?

【问题讨论】:

【参考方案1】:

/p 标志复制该行。因此,如果您只想替换该事件,请避免使用它。所以命令将是:

sed -i "s/hell/HELL/" ./temp.txt

您的文件将是:

Here I lay in the depths of HELL waiting to be rescued by my charming warrior.

【讨论】:

以上是关于sed 命令复制替换两次的主要内容,如果未能解决你的问题,请参考以下文章

linux之文本内容替换命令sed

如何用 sed 的变量替换单引号字符串? [复制]

sed替换与别名配置

linux系统替换文件怎么替换

sed多行模板替换

sed命令在文件中替换、插入