head命令 – 显示文件开头内容-kb88凯时官网登录

来自:网络
时间:2020-09-24
阅读:
免费资源网 - https://freexyz.cn/

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

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

常用参数:

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

参考实例

显示前3行文件内容:

[root@linuxcool ~]# 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@linuxcool ~]# head -v -n 2 test.txt 
==> test.txt <==
hello world
hello linuxcool

显示文件前5个字符:

[root@linuxcool ~]# head -c 5 test.txt 
hello
免费资源网 - https://freexyz.cn/
返回顶部
顶部
网站地图