001、
[root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 [root@PC1 test]# sed 's/ /tag/2' a.txt | sed 's/.*tag//' ## 删除第二个空格之前的所有内容 03 04 05 08 09 10 13 14 15 18 19 20
002、
[root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 [root@PC1 test]# sed 's/ /tag/2' a.txt | sed 's/tag.*//' ## 删除第二个空格之后的所有内容 01 02 06 07 11 12 16 17
标签:字符,PC1,tag,指定,sed,linux,test,txt,root From: https://www.cnblogs.com/liujiaxin2018/p/17449256.html