gpt4 book ai didi

linux - 如何在文本文件中包含带有模式的字符串的行的末尾添加文本?

转载 作者:IT王子 更新时间:2023-10-29 00:54:49 26 4
gpt4 key购买 nike

例如:

hello1.jpg
hello2.jpg
hello3.jpg

我想把它编辑成这样:

hello1.jpg 0
hello2.jpg 0
hello3.jpg 0

我试过:

sed -i '/(hello*)/ s/$/ 0/' hello.txt
perl -ipe 's/$/ 0/ if /hello/' hello.txt
sed -i '/^hello*/ s/$/ 0/' hello.txt

最佳答案

你的第一种方法几乎是正确的,除了括号(不需要)是按字面解释的:

$ sed '/hello/ s/$/ 0/' file
hello1.jpg 0
hello2.jpg 0
hello3.jpg 0

关于linux - 如何在文本文件中包含带有模式的字符串的行的末尾添加文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38147911/

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