实战演练
head --help,哼哼哼,我现在就是烦你......
打印前10行
[root@shaofeng ht]# head file
1
2
3
4
5
6
7
8
9
10
从stdin读取数据
[root@shaofeng ht]# cat file | head
1
2
3
4
5
6
7
8
9
10
指定打印前几行
[root@shaofeng ht]# head -n 4 file
1
2
3
4
打印除了最后M行之外所有的行
[root@shaofeng ht]# head -n -5 file
1
2
3
4
5
6
tail --help,你别让我再碰见你,碰见了,我就贴着你,恶心死你。。。
打印最后10行
[root@shaofeng ht]# tail file
2
3
4
5
6
7
8
9
10
11
从stdin中读取输入
[root@shaofeng ht]# cat file | tail
2
3
4
5
6
7
8
9
10
11
打印最后5行
[root@shaofeng ht]# tail -n 5 file
7
8
9
10
11
tail -n +(M+1),打印除了M行之外的所有行
[root@shaofeng ht]# tail -n +6 file
6
7
8
9
10
11
随进程关闭而关闭 pid
[root@shaofeng ht]# tail -f file --pid $(pidof gedit)