head

显示文件的开头部分。

概要

1head [OPTION]... [FILE]...

主要用途

  • 在未指定行数时默认显示前10行。
  • 处理多个文件时会在各个文件之前附加含有文件名的行。
  • 当没有文件或文件为-时,读取标准输入。

选项

 1-c, --bytes=[-]NUM       显示前NUM字节;如果NUM前有"-",那么会打印除了文件末尾的NUM字节以外的其他内容。
 2-n, --lines=[-]NUM       显示前NUM行而不是默认的10行;如果NUM前有"-",那么会打印除了文件末尾的NUM行以外的其他行。
 3-q, --quiet, --silent    不打印文件名行。
 4-v, --verbose            总是打印文件名行。
 5-z, --zero-terminated    行终止符为NUL而不是换行符。
 6--help                   显示帮助信息并退出。
 7--version                显示版本信息并退出。
 8
 9NUM可以有一个乘数后缀:
10b 512
11kB 1000
12k 1024
13MB 1000*1000
14M 1024*1024
15GB 1000*1000*1000
16G 1024*1024*1024
17T、P、E、Z、Y等以此类推。
18
19也可以使用二进制前缀:
20KiB=K
21MiB=M
22以此类推。

参数

FILE(可选):要处理的文件,可以为一或多个。

返回值

返回0表示成功,返回非0值表示失败。

例子

1# 查看历史文件的前6行:
2[user2@pc ~]$ head -n 6 ~/.bash_history
3#1575425555
4cd ~
5#1575425558
6ls -lh
7#1575425562
8vi ~/Desktop/ZhuangZhu-74.txt
 1# 查看多个文件:
 2[user2@pc ~]$ head -n ~/.bash_history ~/.bashrc
 3==> /allhome/user2/.bash_history <==
 4#1575425555
 5cd ~
 6#1575425558
 7ls -lh
 8#1575425562
 9vi ~/Desktop/ZhuangZhu-74.txt
10#1575425566
11uptime
12#1575425570
13find ~/ -maxdepth 3 -name 'test.sh' -exec lh {} \;
14
15==> /allhome/user2/.bashrc <==
16# .bashrc
17
18# forbid use Ctrl+D to exit shell.
19set -o ignoreeof
20
21# Source global definitions.
22if [ -f /etc/bashrc ]; then
23        . /etc/bashrc
24fi

注意

  1. 该命令是GNU coreutils包中的命令,相关的帮助信息请查看man -s 1 headinfo coreutils 'head invocation'

来源:https://github.com/jaywcjlove/linux-command

最后修改于: Wednesday, January 31, 2024
欢迎关注微信公众号,留言交流。

相关文章:

翻译: