head -5 1.txt 从第五行开始到末尾
head –n 5 1.txt 同上
head –n +5 1.txt 同上
head –n -5 1.txt 除了最后五行的所有内容 少后五行
tail -5 1.txt 最后五行内容
tail –n 5 1.txt 同上
tail –n -5 1.txt 同上
tail –n +5 1.txt 从正数第五行到结尾的所有内容 少前4行
[root@localhost yuanl]# cat headdd
1
2
3
4
5
6
7
8
[root@localhost yuanl]# head -n -5 headdd
1
2
3
[root@localhost yuanl]# tail -n +5 headdd
5
6
7
8