linux 系统 awk命令提取奇数行、偶数行及整数倍行


1、创建测试数据

[root@linuxprobe test]# seq 20 > a.txt [root@linuxprobe test]# ls a.txt [root@linuxprobe test]# head a.txt 1
2
3
4
5
6
7
8
9
10

 

2、提取奇数行

[root@linuxprobe test]# awk 'NR%2 != 0' a.txt 1
3
5
7
9
11
13
15
17
19

 

3、提取偶数行

[root@linuxprobe test]# awk 'NR%2 == 0' a.txt 2
4
6
8
10
12
14
16
18
20

 

4、提取非三倍数行

[root@linuxprobe test]# awk 'NR%3 != 0' a.txt 1
2
4
5
7
8
10
11
13
14
16
17
19
20

 

5、提取三倍数行

[root@linuxprobe test]# awk 'NR%3 == 0' a.txt 3
6
9
12
15
18

其余以此类推。


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM