访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > 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 <行数>

-c <字节>

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 阅读(...) 评论(...) 编辑