每天一個 Linux 命令(14):head 命令
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命令(6):rmdir命令Linux
- 每天一個Linux命令(5):rm命令Linux
- 每天一個Linux命令(2):shutdown命令Linux
- 每天一個 Linux 命令(12):more 命令Linux
- 每天一個 Linux 命令(16):which 命令Linux
- Linux head命令Linux
- 每天一個linux命令(1):find命令之execLinux
- 每天一個Linux命令(1):xargsLinux
- 每天學一個 Linux 命令(15):manLinux
- 每天學一個 Linux 命令(13):touchLinux
- 每天學習一個Linux命令-目錄Linux
- Linux基礎命令---headLinux
- 每天一個linux命令--持續更新中~~Linux
- Linux中head命令例項Linux
- Linux命令4-head / tailLinuxAI
- 每天一個Linux命令-使用du檢視檔案大小Linux
- Linux系統中head命令例項Linux
- 透過8個小例子帶你掌握Linux Head命令!Linux
- 學習一個 Linux 命令:shutdown 命令Linux
- 只需一分鐘,帶你快速掌握linux head命令!Linux
- 每天一個設計模式之命令模式設計模式
- 娛樂 | 14個簡單、有趣、好玩的Linux命令Linux
- 每天一個Linux命令之ps-檢視系統程式資訊Linux
- 學習一個 Linux 命令:pstreeLinux
- Linux常用命令之cp、mv、rm、cat、more、head、tail、ln命令講解LinuxAI
- 每天一條Linux命令(24) ssh (遠端安全登入)Linux
- Linux 常用檢視日誌命令 tail、head、cat、more、lessLinuxAI
- Linux 使用者必知:一分鐘掌握14個常用Linux命令列快捷鍵Linux命令列
- linux最常用的20個命令(一)Linux
- 【Linux命令】grep命令Linux
- Linux命令—–CP命令Linux
- Linux簡單命令(一)Linux
- linux刪除資料夾命令是什麼 linux刪除一個目錄的命令Linux
- 6個有趣的Linux命令Linux
- Linux命令技巧之30個必會的命令技巧Linux
- 重新點亮linux 命令樹————幫助命令[一]Linux
- Linux的幾個新手必備的命令(一)Linux
- 如何用Linux的at命令安排一個任務Linux
- Linux命令(1)——xargs命令Linux