head 是用來顯示文件開頭的命令,其基本信息如下。
命令名稱:head。
英文原意:output the first part of files。
所在路徑:/usr/bin/head。
執(zhí)行權(quán)限:所有用戶。
功能描述:顯示文件開頭的內(nèi)容。
命令格式
[root@localhost ~]# head [選項(xiàng)]文件名
選項(xiàng):
-n 行數(shù): 從文件頭開始,顯示指定行數(shù);
-v:顯示文件名;
常見用法
[root@localhost ~]# head anaconda-ks.cfg
head 命令默認(rèn)顯示文件的開頭 10 行內(nèi)容。如果想顯示指定的行數(shù),則只需使用"-n"選項(xiàng)即可,例如:
[root@localhost ~]# head -n 20 anaconda-ks.cfg這是顯示文件的開頭 20 行內(nèi)容,也可以直接寫"-行數(shù)",例如:
[root@localhost ~]# head -20 anaconda-ks.cfg