Linux 中sed命令輸出奇數行和偶數行的方法

小鲨鱼2018發表於2024-10-29

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

相關文章