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

head 是用来显示文件开头的命令,其基本信息如下。 • 命令名称:head。
• 英文原意:output the first part of files。
• 所在路径:/usr/bin/head。
• 执行权限:所有用户。
• 功能描述:显示文件开头的内容。

命令格式
[root@localhost ~]# head [选项]文件名

选项:
• -n 行数: 从文件头开始,显示指定行数;
• -v:显示文件名;

常见用法

[root@localhost ~]# head anaconda-ks.cfg
head 命令默认显示文件的开头 10 行内容。如果想显示指定的行数,则只需使用"-n"选项即可,例如:

[root@localhost ~]# head -n 20 anaconda-ks.cfg
这是显示文件的开头 20 行内容,也可以直接写"-行数",例如:
[root@localhost ~]# head -20 anaconda-ks.cfg

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/13789.html