Linux 管理员——head 命令



对于文件操作所执行部分而言,head 与 tail 基本相反。默认情况下,head 会读取文件的前 10 行。

head 提供了与 tail 相似的选项 −

开关 操作
-c 输出上次用千字节表示的内容
-n 从 eof 输出 n 行
-q 只有文件内容而没有标题

注意 − 由于文件是从底部追加的,所以 Head 不提供 -f 选项。

**head** 在读取配置文件的说明时非常有用。在编写此类文件时,有效利用前 10 行是一个不错的主意。

[root@centosLocal centos]# head /etc/sudoers 
## Sudoers allows particular users to run various commands as 
## the root user, without needing the root password. 
## 
## Examples are provided at the bottom of the file for collections 
## of related commands, which can then be delegated out to particular 
## users or groups. 
##  
## This file must be edited with the 'visudo' command.

## Host Aliases 
[root@centosLocal centos]#
basic_centos_linux_commands.htm
广告