head命令 – 显示文件开头的内容

head命令 – 显示文件开头的内容

head命令的功能是显示文件开头的内容,默认为前10行。

语法格式:head [参数] 文件

常用参数:

-n <数字>定义显示行数
-c <数字>指定显示头部内容的字符数
-v总是显示文件名的头信息
-q不显示文件名的头信息

参考实例

默认显示文件的前10行内容:

[root@ezdcc ~]# head -n 10 anaconda-ks.cfg #version=RHEL8ignoredisk --only-use=sdaautopart --type=lvm# Partition clearing informationclearpart --none --initlabel# Use graphical installgraphicalrepo --name="AppStream" --baseurl=file:///run/install/repo/AppStream# Use CDROM installation mediacdrom

指定显示文件的前5行内容:

[root@ezdcc ~]# head -n 5 anaconda-ks.cfg #version=RHEL8ignoredisk --only-use=sdaautopart --type=lvm# Partition clearing informationclearpart --none --initlabel

指定显示文件的前20个字符:

[root@ezdcc ~]# head -c 20 anaconda-ks.cfg #version=RHEL8

推荐阅读