命令简介
head命令用于显示文件的开头的内容。在默认情况下,head命令显示文件的头10行内容。
命令语法
head(选项)(参数)
命令选项
-n<数字>:指定显示头部内容的行数;
-c<字符数>:指定显示头部内容的字符数;
-v:总是显示文件名的头信息;
-q:不显示文件名的头信息。
命令实例
[root@localhost ~]# head -v anaconda-ks.cfg
==> anaconda-ks.cfg <==
#version=DEVEL
# Demo file
# hello
# helo
# System authorization information
auth --enableshadow --passalgo=sha512
# Use CDROM installation media
cdrom
# Use graphical install
graphical
显示文件前20行
[root@localhost ~]# head -20 anaconda-ks.cfg
#version=DEVEL
# Demo file
# hello
# helo
# System authorization information
auth --enableshadow --passalgo=sha512
# Use CDROM installation media
cdrom
# Use graphical install
graphical
# Run the Setup Agent on first boot
firstboot --enable
ignoredisk --only-use=sda
# Keyboard layouts
keyboard --vckeymap=us --xlayouts='us'
# System language
lang en_US.UTF-8
# Network information
network --bootproto=dhcp --device=ens33 --onboot=off --ipv6=auto --no-activate
显示文件第10到20行
[root@localhost ~]# head -20 anaconda-ks.cfg | tail
# Run the Setup Agent on first boot
firstboot --enable
ignoredisk --only-use=sda
# Keyboard layouts
keyboard --vckeymap=us --xlayouts='us'
# System language
lang en_US.UTF-8
# Network information
network --bootproto=dhcp --device=ens33 --onboot=off --ipv6=auto --no-activate
[root@localhost ~]#
如果想要显示的时候增加行号,我们可以使用cat命令
[root@localhost ~]# cat -n anaconda-ks.cfg | head -n 5 | tail -n 2
4 # helo
5 # System authorization information