gpt4 book ai didi

bash - 如何在指定行的开头和结尾插入文本?

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

我想在指定数字行的开头和结尾插入一些文本,就像我有这个 txt 文件:

apple
banana
orange
pineapple

要在我使用的第一行的开头和结尾插入:

while read -r line
do
sed "1i[text_insert]$line" > outputfile1
done < inputfile

while read -r line
do
sed "1i$line[text_insert2]" > outputfile2
done < outputfile1

我得到:

[text_insert]apple[text_insert2]
banana
orange
pineapple

现在我想在第 2 行添加一些文本:

[text_insert]apple[text_insert2]
[text_insert3]banana[text_insert4]
orange
pineapple

我尝试使用相同的方法,但它不起作用,我发现的所有其他可能性是在指定行之前插入文本,如换行,而不是将其添加到指定行。

最佳答案

使用awk:

$ line=3
$ awk -v num=$line 'NR==num{$0="[Insert New Text] " $0 " [Insert End Text]"}1' file
apple
banana
[Insert New Text] orange [Insert End Text]
pineapple

关于bash - 如何在指定行的开头和结尾插入文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17118721/

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