每天乙個linux命令(13) head

2021-08-14 19:11:49 字數 2139 閱讀 7991

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 log201

4.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命令 13 more命令

more 3 log2012.log輸出 root localhost test cat log2012.log 2012 01 2012 02 2012 03 2012 04 day1 2012 04 day2 2012 04 day3 root localhost test more 3 log...

每天乙個linux命令(13) less 命令

less 工具也是對檔案或其它輸出進行分頁顯示的工具,應該說是linux正統檢視檔案內容的工具,功能極其強大。less 的用法比起 more 更加的有彈性。在 more 的時候,我們並沒有辦法向前面翻,只能往後面看,但若使用了 less 時,就可以使用 pageup pagedown 等按鍵的功能來...

每天乙個linux命令(13) tail 命令

tail 命令從指定點開始將檔案寫到標準輸出.使用tail命令的 f選項可以方便的查閱正在改變的日誌檔案,tail f filename會把filename裡最尾部的內容顯示在螢幕上,並且不但重新整理,使你看到最新的檔案內容.1 命令格式 tail 必要引數 選擇引數 檔案 2 命令功能 用於顯示指...