本教程操作环境:CentOS 6系统、Dell G3电脑。
在linux中,可用head命令来读取文件的前几行。
head 命令可用于查看文件的开头部分的内容,有一个常用的参数 -n 用于显示行数,默认为 10,即显示 10 行的内容。
读取文件前几行的基本语法格式如下:
head [-n K] 文件名
说明:
K
表示行数,该选项用来显示文件前 K
行的内容;
如果使用 "-K
" 作为参数,则表示除了文件最后 K 行外,显示剩余的全部内容。
如果省略K,而默认显示 10 行的内容。
选项 | 含义 |
---|---|
-c K | 这里的 K 表示字节数,该选项用来显示文件前 K 个字节的内容;如果使用 "-K",则表示除了文件最后 K 字节的内容,显示剩余全部内容。 |
-v | 显示文件名; |
读取文件的前几行的示例:
指定行数
[root@xuexi ~]# head -n 2 /etc/passwdroot:x:0:0:root:/root:/bin/bashbin:x:1:1:bin:/bin:/sbin/nologin
指定末尾除N行不显示外,全部显示
[root@xuexi ~]# head -n -40 /etc/passwdroot:x:0:0:root:/root:/bin/bashbin:x:1:1:bin:/bin:/sbin/nologindaemon:x:2:2:daemon:/sbin:/sbin/nologin
总是显示标题文件名
[root@xuexi ~]# head -n 2 -v /etc/passwd==> /etc/passwd <==root:x:0:0:root:/root:/bin/bashbin:x:1:1:bin:/bin:/sbin/nologin
指定多个文件
[root@xuexi ~]# head -n 5 /etc/passwd /etc/firewalld/firewalld.conf ==> /etc/passwd <==root:x:0:0:root:/root:/bin/bashbin:x:1:1:bin:/bin:/sbin/nologindaemon:x:2:2:daemon:/sbin:/sbin/nologinadm:x:3:4:adm:/var/adm:/sbin/nologinlp:x:4:7:lp:/var/spool/lpd:/sbin/nologin //两个文件之间会空一行==> /etc/firewalld/firewalld.conf <==# firewalld config file # default zone# The default zone used if an empty zone string is used.# Default: public
不显示标题文件名
[root@xuexi ~]# head -n 5 -q /etc/passwd /etc/firewalld/firewalld.confroot:x:0:0:root:/root:/bin/bashbin:x:1:1:bin:/bin:/sbin/nologindaemon:x:2:2:daemon:/sbin:/sbin/nologinadm:x:3:4:adm:/var/adm:/sbin/nologinlp:x:4:7:lp:/var/spool/lpd:/sbin/nologin //此时中间就没有空行# firewalld config file # default zone# The default zone used if an empty zone string is used.# Default: public
注意:head也经常用于管道重定向
以上就是linux怎么读取文件的前几行的详细内容,更多请关注php中文网其它相关文章!