gpt4 book ai didi

linux - sed 删除一个文件中的一个字符串

转载 作者:太空宇宙 更新时间:2023-11-04 05:24:50 26 4
gpt4 key购买 nike

我正在尝试使用以下方法删除一个文件中的一个字符串:

sed -i -e '/example/' test.txt

但是我遇到了以下错误:

sed: -e expression #1, char 6: missing command

缺少什么以及为什么?

谢谢!

最佳答案

/example/ 是一个地址,它告诉 sed 在哪里运行命令 - 在包含字符串 example 的行上。您没有指定任何命令。

这是一个用空字符串替换字符串 example 的命令:

's/example//'

关于linux - sed 删除一个文件中的一个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33943215/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com