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

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

常用参数:

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

参考实例

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

[root@linuxcool ~]# head -n 10 anaconda-ks.cfg 
#version=RHEL8
ignoredisk --only-use=sda
autopart --type=lvm
# Partition clearing information
clearpart --none --initlabel
# Use graphical install
graphical
repo --name="AppStream" --baseurl=file:///run/install/repo/AppStream
# Use CDROM installation media
cdrom

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

[root@linuxcool ~]# head -n 5 anaconda-ks.cfg 
#version=RHEL8
ignoredisk --only-use=sda
autopart --type=lvm
# Partition clearing information
clearpart --none --initlabel

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

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