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

相關文章:

翻譯: