Linux head 顯示檔案的開頭

2021-07-11 01:31:38 字數 1686 閱讀 4920

head

與tail

就像它的名字一樣的淺顯易懂,它是用來顯示開頭或結尾某個數量的文字區塊,

head

用來顯示檔案的開頭至標準輸出中,而

tail

想當然爾就是看檔案的結尾。 

1.命令格式:

head[

引數]...[

檔案]...

2.命令功能:

head

用來顯示檔案的開頭至標準輸出中

,預設head

命令列印其相應檔案的開頭

10行。 

3.命令引數:

-q 隱藏檔名

-v 顯示檔名

-c《位元組》 顯示位元組數

-n《行數》 顯示的行數4.

使用例項:

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

命令:head-n 5 log2014.log

輸出:

[root@localhost test]

#cat log2014.log 

2014-01

2014-02

2014-03

2014-04

2014-05

2014-06

2014-07

2014-08

2014-09

2014-10

2014-11

2014-12

******************************

[root@localhost test]

#head -n 5 log2014.log 

2014-01

2014-02

2014-03

2014-04

2014-05[root@localhost test]#

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

命令:head-c 20 log2014.log

輸出:

[root@localhost test]

#head -c 20 log2014.log

2014-01

2014-02

2014

[root@localhost test]#

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

命令:head-c -32 log2014.log

輸出:

[root@localhost test]

#head -c -32 log2014.log

2014-01

2014-02

2014-03

2014-04

2014-05

2014-06

2014-07

2014-08

2014-09

2014-10

2014-11

2014-12[root@localhost test]#

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

命令:head-n -6 log2014.log

輸出:

[root@localhost test]

#head -n -6 log2014.log

2014-01

2014-02

2014-03

2014-04

2014-05

2014-06

2014-07[root@localhost test]#

Linux head命令 顯示檔案開頭的內容

head 命令可以顯示指定檔案前若干行的檔案內容,其基本格式如下 root localhost head 選項 檔名 該命令常用選項以及各自的含義,如表 1 所示。表 1 head 命令常用選項及含義 選項 含義 n k 這裡的 k 表示行數,該選項用來顯示檔案前 k 行的內容 如果使用 k 作為引...

顯示檔案的命令彙總

cat 檔名 cat 檔案1 檔案2 檔案3 tac和cat命令相反,顛倒輸出順序,把尾部先顯示,頭部最後顯示。倒敘顯示。head 檔案 head 看檔案頭,預設10行 head n 20 檔案 顯示檔案頭20行 less 檔案1 more 檔案1 q 退出 tail 檔案 顯示檔案最後10行 ta...

linux cat 顯示檔案內容

cat 選項 檔案 cat命令的用途是連線檔案或標準輸入並列印。這個命令常用來顯示檔案內容,或者將幾個檔案連線起來顯示,或者從標準輸入讀取內容並顯示,它常與重定向符號配合使用。1.一次顯示整個檔案 cat filename 2.從鍵盤建立乙個檔案 cat filename只能建立新檔案,不能編輯已有...