gpt4 book ai didi

regex - sed 命令仅在 unix 中的最后一行添加文本

转载 作者:行者123 更新时间:2023-12-05 08:24:01 24 4
gpt4 key购买 nike

我想要 sed 命令,它只会在最后一行添加逗号例如 我有包含

的文本文件
"872709"
"872700"
"145"
"872808B"
"8729029921"
"879B"
"87290"
"AirHo9"
"Ait22"
"DVDSept22"
"Gr929"

想在最后一行加逗号

"872709"
"872700"
"145"
"872808B"
"8729029921"
"879B"
"87290"
"AirHo9"
"Ait22"
"DVDSept22"
"Gr929",

最佳答案

你可以使用sed:

sed '$s/$/,/' file
"872709"
"872700"
"145"
"872808B"
"8729029921"
"879B"
"87290"
"AirHo9"
"Ait22"
"DVDSept22"
"Gr929",

要使其保存内联更改,请使用:

sed -i.bak '$s/$/,/' file

关于regex - sed 命令仅在 unix 中的最后一行添加文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26298405/

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