gpt4 book ai didi

linux - 如何通过搜索某个关键字将整行替换为空白行

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:17:42 25 4
gpt4 key购买 nike

我有一个像目录一样存储数据的文件。我想在此文件中搜索关键字并将包含它的行替换为空行。
关键字将保存在 $2 中。

这是我到目前为止得到的:

sed '/$2/ c' " "' file.txt

感谢您的帮助。

最佳答案

使用 GNU sed 测试:

$ a="blank"   # One can use "$2" instead of "$a" below. It would work the same.
$ sed -i "s/.*$a.*//g" test.txt # -i option overwrites test.txt with the replacement

示例 test.txt

$ cat test.txt
This is a test line
Replace this line with a blank line
This is another line

输出:

This is a test line

This is another line

关于linux - 如何通过搜索某个关键字将整行替换为空白行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48450622/

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