我有一个文件,我只想要3的倍数的行。是否有任何UNIX命令来执行此任务?
答案 0 :(得分:7)
这就是:
awk 'NR%3==0' file
NR
代表记录数,在这种情况下是行数。所以条件是“(行数/ 3)具有模数0”===“线是3”的倍数。
$ cat file
hello1
hello2
hello3
hello4
hello5
hello6
hello7
hello8
hello9
hello10
$ awk 'NR%3==0' file
hello3
hello6
hello9
答案 1 :(得分:4)
使用GNU sed:
sed -n 0~3p filename
您可以通过更改~
之前的数字从不同的行开始,因此从第一行开始,它将是:
sed -n 1~3p filename
示例:
$ cat filename
The first line
The second line
The third line
The fourth line
The fifth line
The sixth line
The seventh line
$ sed -n 0~3p filename
The third line
The sixth line
$ sed -n 1~3p filename
The first line
The fourth line
The seventh line
或者,使用非GNU sed,如BSD sed:
$ sed -n '3,${p;n;n;}' filename
The third line
The sixth line