中文字幕亚洲第一精品|精品国产免费一区二区|久久婷婷五月六月综合版|中文字幕熟妇久久久人妻|久久综合精品国产一区无码|国产成人精品永久免费视频|午夜亚洲国产精品理论片a级|久久精品一区二区三区无码护土

 訪問手機版  

Linux常用命令|Linux培訓學習|考試認證|工資待遇與招聘,認準超級網(wǎng)工!

招聘|合作 登陸|注冊

網(wǎng)絡工程師培訓

當前位置:網(wǎng)絡工程師 > 技術課程 > linux > 熱點關注 > linux常用命令

Linux常用基本命令(head)

時間:2019-08-22

linux常用命令_常用dos命令大全_常用dos命令

head命令

linux常用命令_常用dos命令大全_常用dos命令

作用:顯示文件的頭部內容,默認顯示前面10行

常用dos命令大全_linux常用命令_常用dos命令

格式:

linux常用命令_常用dos命令大全_常用dos命令

head [option] [file]

常用dos命令_常用dos命令大全_linux常用命令

-n <行數(shù)>

-c <字節(jié)>

ghostwu@dev:~/linux/more$ head ghostwu.txt 
this is ghostwu
how are you
file thank you
file thank you
file thank you
file thank you
ghostwu@dev:~/linux/more$ head -2 ghostwu.txt 
this is ghostwu
ghostwu@dev:~/linux/more$ cat ghostwu.txt | head -4
this is ghostwu
how are you
ghostwu@dev:~/linux/more$ head -c 10 ghostwu.txt 
this is ghghostwu@dev:~/linux/more$ cat -n ghostwu.txt | head
     1    this is ghostwu
     2    
     3    
     4    how are you
     5    
     6    
     7    file thank you
     8    file thank you
     9    file thank you
    10    file thank you
ghostwu@dev:~/linux/more$ 

posted @ 2018-05-18 06:11ghostwu 閱讀(...) 評論(...) 編輯