linux 中 sed n选项将两行作为一行处理,屏蔽第一行


 

001、

(base) [email protected]:/home/test2# ls
a.txt
(base) [email protected]:/home/test2# cat a.txt
a1
a2
a3
a4
a5
a6
a7
a8
a9
a10
(base) [email protected]:/home/test2# sed 'n; s/a/M/g' a.txt      ## n;将两行合并为一行, 保护第一行
a1
M2
a3
M4
a5
M6
a7
M8
a9
M10

 

002、

(base) [email protected]:/home/test4# ls
a.txt
(base) [email protected]:/home/test4# cat a.txt
1
2
aaa
3
4
5
6aaa
aaa
8
9
10
(base) [email protected]:/home/test4# sed '/aaa/n; s/aaa/KKK/' a.txt
1
2
aaa
3
4
5
6aaa
KKK
8
9
10

 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/281070.html

(0)
上一篇 2022年8月17日
下一篇 2022年8月17日

相关推荐

发表回复

登录后才能评论