簡明Linux命令列筆記 head

2022-07-03 21:00:13 字數 1479 閱讀 1809

顯示檔案的頭部

head [options] [file-list]

引數file-list

為要head

顯示的檔案的路徑名列表。當指定多個檔案時,head

在顯示每個檔案的前幾行內容之前顯示對應的檔名

當不指定檔案時,head將從標準輸入獲得輸入

-c n                顯示檔案的前n個位元組(字元)

-n n                顯示檔案的前n行,也可以使用-n來指定顯示的n行

-q                   當在命令列上指定多個檔名時,它禁止顯示頭部

預設情況下,head將顯示檔案的前10行

原檔案

$ cat

demo

line one

line two

line three

line four

line five

line six

line seven

line eight

line nine

line ten

line eleven

head

$ head

demo

line one

line two

line three

line four

line five

line six

line seven

line eight

line nine

line ten

預設顯示10行

head -n

$ head -n 4

demo

line one

line two

line three

line four

顯示指定的行數

head -n 負數

$ head -n -4

demo

line one

line two

line three

line four

line five

line six

line seven

顯出除最後4行外的其他行

head -3 多個檔案

$ head -3 demo dd

==> demo <==line one

line two

line three

==> dd

<==line one

line two

line three

顯示多個檔案的前3行

head -c

$ head -c 4

demo

line$

顯示檔案的前4個字元,注意此處不換行

簡明Linux命令列筆記 cat

連線或顯示檔案 cat options file list file list 是cat 要處理的單個檔案路徑名或多個檔案路徑名列表,如果不指定任何引數或指定乙個連字元 代替檔名,cat就從標準輸入讀取資訊,然後列印 e 在每行結束處顯示 n 對輸出的所有行編號 b 對輸出的非空所有行編號 s 刪除...

簡明Linux命令列筆記 ln

為檔案建立鏈結 ln options existing file new link ln options existing file list directory ln可以為乙個或多個檔案建立硬鏈結或符號 軟 鏈結。對於目錄,只能建立符號鏈結,而不能建立硬鏈結 引數第一種格式 existing fi...

簡明Linux命令列筆記 locate

在mlocate資料庫中搜尋條目 locate option pattern pattern 是locate 需要搜尋的檔名或者正規表示式 i 忽略大小寫 r 使用正規表示式搜尋 locate locate mlocate.db usr share man man5 mlocate.db.5 gz ...