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 命令复制替换两次的主要内容,如果未能解决你的问题,请参考以下文章