Linux命令學習(14) head 命令

來源:互聯網
上載者:User

標籤:http   ar   os   使用   sp   檔案   div   on   2014   

head 與 tail 就像它的名字一樣的淺顯易懂,它是用來顯示開頭或結尾某個數量的文字區塊,head 用來顯示檔案的開頭至標準輸出中,而 tail 想當然爾就是看檔案的結尾。

1.命令格式:

head [參數]... [檔案]... 

2.命令功能:

head 用來顯示檔案的開頭至標準輸出中,預設head命令列印其相應檔案的開頭10行。

3.命令參數:

-q 隱藏檔案名稱

-v 顯示檔案名稱

-c<位元組> 顯示位元組數

-n<行數> 顯示的行數

4.使用執行個體:

執行個體1:顯示檔案的前n行

命令:

head -n 5 log2014.log

輸出:

[[email protected] 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

==============================

[[email protected] test]# head -n 5 log2014.log 

2014-01

2014-02

2014-03

2014-04

2014-05[[email protected] test]#

 

執行個體2:顯示檔案前n個位元組

命令:

head -c 20 log2014.log

輸出:

[[email protected] test]# head -c 20 log2014.log

2014-01

2014-02

2014

[[email protected] test]#

 

執行個體3:檔案的除了最後n個位元組以外的內容

命令:

head -c -32 log2014.log

輸出:

[[email protected] 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[[email protected] test]#

 

執行個體4:輸出檔案除了最後n行的全部內容

命令:

head -n -6 log2014.log

輸出:

[[email protected] test]# head -n -6 log2014.log

2014-01

2014-02

2014-03

2014-04

2014-05

2014-06

2014-07[[email protected] test]#

  • 相關文章推薦:
  • linux檔案列印命令(cat、tail、head、tee)
  • linux命令大全之head命令使用方法
  • linux命令執行個體教程之head命令
  • 顯示檔案內容的linux終端命令(cat、head、less、tail等)
  • 本文來自:愛好Linux技術網
  • 本文連結:http://www.ahlinux.com/start/cmd/9043.html

Linux命令學習(14) head 命令

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.