linux head

简介:

Linux命令总结—head命令

(1)命令功能

head命令用于显示文件的开关的内容。在默认情况下,head命令显示文件的头10行内容。

(2)命令语法

head(选项) (参数)

(3)选项说明

  • -n <数字>:指定显示头部内容的行数;

  • -c <字符数>:指定显示头部内容的字符数;

  • -v:总是显示文件名的头信息,显示多个文件时默认选项;

  • -q:不显示文件名的头信息,显示单个文件时默认选项;

(4)参数说明

  • 文件列表:指定显示头部内容的文件列表。

(5)实例

实例1:显示单个文件的头部内容—head文件

1
2
3
4
5
6
7
8
9
10
11
[root@moban ~]#head  /etc/inittab 
# inittab  is  onlyused by upstart  for  the  default  runlevel.
#
# ADDING OTHERCONFIGURATION HERE WILL HAVE NO EFFECT ON YOUR SYSTEM.
#
# Systeminitialization  is  started by /etc/init/rcS.conf
#
# Individual runlevelsare started by /etc/init/rc.conf
#
# Ctrl-Alt-Delete ishandled by /etc/init/control-alt- delete .conf
#

实例2:显示多个文件的头部内容—head 文件 文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[root@moban ~]# head  /etc/inittab /etc/fstab      
==> /etc/inittab <==
# inittab  is  only used by upstart  for  the defaultrunlevel.
#
# ADDING OTHER CONFIGURATION HERE WILL HAVE NO EFFECT ONYOUR SYSTEM.
#
# System initialization  is  started by /etc/init/rcS.conf
#
# Individual runlevels are started by /etc/init/rc.conf
#
# Ctrl-Alt-Delete  is  handled by/etc/init/control-alt- delete .conf
#
  
==> /etc/fstab <==
  
#
# /etc/fstab
# Created by anaconda on Mon May  11  22 : 18 : 51  2015
#
# Accessible filesystems, by reference, are maintainedunder  '/dev/disk'
# See man pages fstab( 5 ), findfs( 8 ), mount( 8 ) and/or blkid( 8 ) for  more info
#
UUID=17ec9366-d335-4b07- 8890 -3765cabe746a /         ext4   defaults         1  1
UUID=1f8e61c7-de21-42e3-89c5-cb28f607d1db /boot     ext4    defaults         1  2

    实例3:显示文件头部指定行数的内容—head –n <行数>

1
2
3
4
5
6
[root@moban ~]# head  -n  5  /etc/inittab          
# inittab  is  onlyused by upstart  for  the  default  runlevel.
#
# ADDING OTHERCONFIGURATION HERE WILL HAVE NO EFFECT ON YOUR SYSTEM.
#
# Systeminitialization  is  started by /etc/init/rcS.conf

实例4:显示文件头部指定字符数的内容—head –c <字符数>

1
2
3
4
[root@moban ~]# head  -c  88  /etc/inittab   
# inittab  is  onlyused by upstart  for  the  default  runlevel.
#
# ADDING OTHERCONFIGURATI[root@moban ~]#

相关文章
|
2月前
|
Linux Shell
Linux 中 Tail 命令的 9 个实用示例
Linux 中 Tail 命令的 9 个实用示例
85 6
Linux 中 Tail 命令的 9 个实用示例
|
6月前
|
Linux 监控 Shell
Linux 终端命令之文件浏览(4) head, tail
Linux 终端命令之文件浏览(4) head, tail
52 0
Linux 终端命令之文件浏览(4) head, tail
|
6月前
|
监控 Linux
Linux中的`tail`命令
Linux中的`tail`命令
70 4
|
安全 Linux API
Linux内核10-list_head和hlist_head的理解
Linux内核10-list_head和hlist_head的理解
|
Linux
Linux中tail命令常用参数
Linux中tail命令常用参数
815 0
|
Linux
linux 之 tail 命令
本篇内容记录了有关 tail 命令的相关操作。
177 0
|
Go Linux
linux head
阅读目录(Content) 一.命令格式: 二.命令功能: 三.命令参数: 四.使用实例: 1.输出log1文件的前4行内容 2.输出log1文件除最后4行以外的全部内容 3.输出log1文件的前24个字节 4.输出log1文件的除最后24个字节以外的内容 head 与 tail 就像它的名字一样的浅显易懂,它是用来显示开头或结尾某个数量的文字区块,head 用来显示档案的开头至标准输出中,而 tail 想当然尔就是看档案的结尾。
817 0
|
Linux
linux tail
tail -f tail -n tail -n 3 xxx tail -n +3 log1 从第三行开始显示
1007 0