1. 程式人生 > >head命令用法總結

head命令用法總結

head命令用法總結

head命令用於顯示檔案的開頭的內容。在預設情況下,head命令顯示檔案的頭10行內容。

1.語法

head(選項)(引數)

 

2.選項

-c,  --bytes=[-]K    顯示每個檔案的前K 位元組內容;如果附加"-"引數,則除了每個檔案的最後K位元組資料外 顯示剩餘全部內容
-n, --lines=[-]K    顯示每個檔案的前K 行內容;如果附加"-"引數,則除了每個檔案的最後K行外 顯示剩餘全部內容
-q, --quiet, --silent    不顯示包含給定檔名的檔案頭
-v, --verbose        總是顯示包含給定檔名的檔案頭
    
--help 顯示此幫助資訊並退出 --version 顯示版本資訊並退出

 

3.引數

檔案列表:指定顯示頭部內容的檔案列表。

 

4.示例

示例1:顯示檔案的前n行

[[email protected] opt]# head -n 8 ceshi.txt 
1
2
3
4
5
6
7
8

 

示例2:輸出檔案除了最後n行的全部內容

[[email protected] opt]# head -n -4 ceshi.txt 
1
2
3
4
5 6 7 8 9 10 11 12 13 14 15 16

 

示例3:顯示檔案前n個位元組

[[email protected] opt]# head -c 12 ceshi.txt 
1
2
3
4
5
6

 

示例4:檔案的除了最後n個位元組以外的內容

[[email protected] opt]# head -c -17 ceshi.txt 
1
2
3
4
5
6
7
8
9
10
11
12
13
14

 

示例5:head可以一次顯示多個檔案

[[email protected] opt]# head ceshi.txt ceshi2.txt 
==> ceshi.txt <==
1
2
3
4
5
6
7
8
9
10

==> ceshi2.txt <==
1
2
3
4
5
6
7
8
9
10