linux基本命令(14)——head命令
  TEZNKK3IfmPf 2023年11月14日 49 0

head是用来显示开头或结尾某个数量的文字区块,head用来显示档案的开头至标准输出

1、命令格式

head [参数] [文件]

2、命令功能

head用来显示档案的开头至标准输出中,默认head命令打印其相应文件的开头10行。

3、命令参数

 -c, --bytes=[-]K         print the first K bytes of each file;
                             with the leading '-', print all but the last
                             K bytes of each file
  -n, --lines=[-]K         print the first K lines instead of the first 10;
                             with the leading '-', print all but the last
                             K lines of each file
  -q, --quiet, --silent    never print headers giving file names
  -v, --verbose            always print headers giving file names
     
    --help     display this help and exit
     
    --version  output version information and exit

4、使用范例

实例1:显示文件的前n行

命令:head -n 5 log.log


实例2:显示文件前n个字节

命令:head -c 20 log.log


实例3:文件除了最后n个字节以外的内容

命令:head -c -32 log.log


实例4:输出文件除了最后n行的全部内容

命令:head -n -6 log.log

【版权声明】本文内容来自摩杜云社区用户原创、第三方投稿、转载,内容版权归原作者所有。本网站的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@moduyun.com

  1. 分享:
最后一次编辑于 2023年11月14日 0

暂无评论

推荐阅读
  TEZNKK3IfmPf   2024年05月31日   52   0   0 linux服务器
  TEZNKK3IfmPf   2024年05月31日   30   0   0 linux服务器centos
  TEZNKK3IfmPf   2024年05月31日   29   0   0 linuxbind
  TEZNKK3IfmPf   2024年05月31日   40   0   0 linuxshell
TEZNKK3IfmPf