gpt4 book ai didi

bash - 如何在搜索结果后追加一行?

转载 作者:行者123 更新时间:2023-11-29 09:44:24 24 4
gpt4 key购买 nike

所以我在某个文件中查找某些内容:

grep "import" test.txt | tail -1 

在test.txt中有

import-one
import-two
import-three

some other stuff in the file

这将返回最后的搜索结果:

import-three

现在如何在导入三之后但在“文件中的其他内容”之前添加一些文本。基本上我想追加一行但不是在文件末尾而是在搜索结果之后。

最佳答案

我知道您想要在每个搜索结果之后添加一些文本,这意味着在每个匹配行之后。所以试试

grep "import" test.txt | sed '/$/ a\Line to be added'

关于bash - 如何在搜索结果后追加一行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16795896/

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