Linux 中sed命令输出奇数行和偶数行的方法

 

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
[root@PC1 test]# sed -n 'n;p' a.txt                  ## 输出偶数行
03 04
07 08
11 12
[root@PC1 test]# sed -n 'p;n' a.txt                  ## 输出奇数行
01 02
05 06
09 10

。 

 

posted @ 2024-10-29 00:46  小鲨鱼2018  阅读(15)  评论(0编辑  收藏  举报