1、head 可以显示文件或标准输入的前面行
格式:head [OPTION]... [FILE]...
选项:
-c # 指定获取前#字节 -n # 指定获取前#行,#如果为负数,表示从文件头取到倒数第#前 -# 同上 范例[root@centos7 data]# cat 1.txt
1 1 1 1
2 2 2 2
3 3 3 3
4 4 4 4
5 5 5 5
[root@centos7 data]# head -n 2 1.txt #取前两行
1 1 1 1
2 2 2 2
[root@centos7 data]# head -n +2 1.txt #取前两行
1 1 1 1
2 2 2 2
[root@centos7 data]# head -n -2 1.txt #取倒数两行外的
1 1 1 1
2 2 2 2
3 3 3 3
[root@centos7 data]# head -2 1.txt 等同于 head -n 2 或者 head -n +2
1 1 1 1
2 2 2 2
范例: -c 选项
[root@centos7 data]# echo 'abcde' | head -c 2
ab
[root@centos7 data]# echo 'abcde' | head -c +2
ab
[root@centos7 data]# echo 'abcde' | head -c -2
abcd
2、tail tail 和head 相反,查看文件或标准输入的倒数行
格式 tail [OPTION]... [FILE]...
选项
-c # 指定获取后#字节 -n # 指定获取后#行,如果#是负数,表示从第#行开始到文件结束 -# 同上 -f 跟踪显示文件fd新追加的内容,常用日志监控,相当于 --follow=descriptor,当文件删除再新 建同名文件,将无法继续跟踪文件 -F 跟踪文件名,相当于--follow=name --retry,当文件删除再新建同名文件,将可以继续跟踪文 件 tailf 类似 tail –f,当文件不增长时并不访问文件,节约资源,CentOS8无此工具