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

head命令以行为单位,取文件的内容,后面不接参数时默认打印前10行。

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

常用参数:

-n 后面接数字,代表显示几行的意思
-c 指定显示头部内容的字符数
-v 总是显示文件名的头信息
-q 不显示文件名的头信息

参考实例

显示前3行文件内容:

[root@xtuos.com ~]# head -n 3 install.log
Installing libgcc-4.4.7-23.el6.x86_64
warning: libgcc-4.4.7-23.el6.x86_64: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY
Installing setup-2.8.14-23.el6.noarch

显示文件名信息,并显示文件前两行:

[root@xtuos.com ~]# head -v -n 2 test.txt 
==> test.txt <==
hello world
hello xtuos.com

显示文件前5个字符:

[root@xtuos.com ~]# head -c 5 test.txt 
hello

未经允许不得转载:统信UOS之家 » head命令 – 显示文件开头内容

相关文章