head命令
head命令用於顯示檔案的開頭的內容。在預設情況下,head命令顯示檔案的頭10行內容。
語法
head (選項) (引數)
選項
-n number :指定顯示頭部內容的行數。
root@68fc0a9bc6dd
:/home/wzm/testtail
# head redis.conf -n 3
# redis configuration file example.
## note that in order to read the configuration file, redis must be
-c number:指定顯示頭部的字元數。
root@68fc0a9bc6dd
:/home/wzm/testtail
# head redis.conf -c 10
# redis coroot@68fc0a9bc6dd:/home/wzm/testtail#
-q:不顯示檔名
root@68fc0a9bc6dd:/home/wzm/testtail# head -n 3 -q redis.conf readme.md
# redis configuration file example.
## note that in order to read the configuration file, redis must be
this readme is just a fast *quick start* document. you can find more detailed documentation at
what is redis?
-v:總是顯示檔名的頭資訊,預設
root@68fc0a9bc6dd:/home/wzm/testtail# head -n 3 -v redis.conf readme.md
==> redis.conf
<==
# redis configuration file example.
## note that in order to read the configuration file, redis must be
==> readme.md
<==
this readme is just a fast *quick start* document. you can find more detailed documentation at
what is redis?
root@68fc0a9bc6dd:/home/wzm/testtail#
引數
檔案列表:指定顯示頭部內容的檔案列表。
每天回顧linux命令(wc)
wc命令 wc命令用來計算數字。利用wc指令可以計算檔案的位元組數 字數或列數,若不在指定檔名,或所指定給予的檔名為 則wc指令會從表中輸入裝置讀取資料。語法 wc 選項 引數 選項 c或 bytes或 char 只顯示位元組數 l或 lines 只顯示列數 w或 words 只顯示字數 引數 檔案...
每天回顧linux命令(which)
which命令 which命令用於查詢並顯示給定命令的絕對路徑,環境變數path中儲存了查詢命令時需要遍歷的目錄。which目錄會在環境變數 path設定的目錄裡查詢符合條件的檔案。也就是說,使用which命令,就可以看到某個系統命令是否存在,以及執行的到底是哪個乙個位置的命令。語法 which 選...
每天回顧linux命令(sort)
sort命令 sort命令在linux裡非常有用,它將檔案進行排序,並將排序解雇標準輸出。sort命令既可以從特定檔案,也可以從stdin獲取輸入。語法 sort 選項 引數 選項 b 忽略每行前面開始的空格符。root 68fc0a9bc6dd home wzm testsort sort sor...