- Linux 管理员教程
- 主页
- CentOS 概述
- 基本 CentOS Linux 命令
- 文件/文件夹管理
- 用户管理
- 配额管理
- 用 systemctl 启停 Systemd 服务
- 用 systemctl 进行资源管理
- 用 cgroups 进行资源管理
- 进程管理
- 防火墙设置
- 在 CentOS Linux 中配置 PHP
- 在 CentOS Linux 中设置 Python
- 在 CentOS Linux 中配置 Ruby
- 在 CentOS Linux 中设置 Perl
- 安装和配置 Open LDAP
- 创建 SSL 证书
- 在 CentOS 7 中安装 Apache Web 服务器
- 在 CentOS 7 中设置 MySQL
- 设置 Postfix MTA 和 IMAP/POP3
- 安装匿名 FTP
- 远程管理
- 在 CentOS 中监控流量
- 日志管理
- 备份与恢复
- 系统更新
- Shell 脚本
- 软件包管理
- 卷管理
- 有用的 Linux 管理员资源
- Linux 管理员——快速指南
- Linux 管理员——有用资源
- Linux 管理员——讨论
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
广告