Linux命令 head

简介: Linux命令 head

linux命令之head

1.head介绍
linux命令head用来查看文件的前N行内容;默认head查看前10行

2.head用法
head [参数] 文件

head常用参数
参数 说明
-n 从头显示N行,默认显示10行,可以不写
-q 隐藏文件名,在查看两个及以上文件名的情况下有效
-v 显示文件名
-c 从头显示N字节的内容
3.实例
3.1.显示文件的前5行
命令:

head -n 5 a.txt

OR

head -5 a.txt

[root@centos79-3 ~]# head -n 5 a.txt
1
2
3
4
5
[root@centos79-3 ~]# head -5 a.txt
1
2
3
4
5
[root@centos79-3 ~]#
3.2.显示文件的前5个字节的内容
命令:

head -c 5 a.txt

OR

head -c5 a.txt

[root@centos79-3 ~]# head -c 5 a.txt
1
2
3[root@centos79-3 ~]# head -c5 a.txt
1
2
3[root@centos79-3 ~]#
3.3.显示输出内容的文件名
命令:

head -v a.txt

[root@centos79-3 ~]# head a.txt
1
2
3
4
5
6
7
8
9
10
[root@centos79-3 ~]# head -v a.txt
==> a.txt <==
1
2
3
4
5
6
7
8
9
10
[root@centos79-3 ~]#

3.4.显示除文件后两行的剩余内容
命令:

head -n -2 a.txt

[root@centos79-3 ~]# cat a.txt
1
2
3
4
5
6
7
8
9
10
11
12
[root@centos79-3 ~]# head -n -2 a.txt
1
2
3
4
5
6
7
8
9
10
[root@centos79-3 ~]#

3.5.显示除文件后两个字符的剩余内容
命令:

head -c -2 a.txt

[root@centos79-3 ~]# cat a.txt
1
2
3
4
5
6
7
8
9
10
11
12
[root@centos79-3 ~]# head -c -2 a.txt
1
2
3
4
5
6
7
8
9
10
11
1[root@centos79-3 ~]#

3.6.显示内容时隐藏文件的名称
命令:

head -n 5 -q a.txt b.txt

[root@centos79-3 ~]# head -n 5 a.txt b.txt
==> a.txt <==
1
2
3
4
5

==> b.txt <==
1
2
3
4
5
[root@centos79-3 ~]# head -n 5 -q a.txt b.txt
1
2
3
4
5
1
2
3
4
5
[root@centos79-3 ~]#
————————————————
版权声明:本文为CSDN博主「小黑要上天」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/z19861216/article/details/132982881

目录
相关文章
|
22天前
|
Linux
Linux系统之expr命令的基本使用
【10月更文挑战第18天】Linux系统之expr命令的基本使用
69 4
|
9天前
|
缓存 监控 Linux
|
13天前
|
Linux Shell 数据安全/隐私保护
|
13天前
|
域名解析 网络协议 安全
|
20天前
|
运维 监控 网络协议
|
21天前
|
监控 Linux Shell
|
2天前
|
Linux
在 Linux 系统中,“cd”命令用于切换当前工作目录
在 Linux 系统中,“cd”命令用于切换当前工作目录。本文详细介绍了“cd”命令的基本用法和常见技巧,包括使用“.”、“..”、“~”、绝对路径和相对路径,以及快速切换到上一次工作目录等。此外,还探讨了高级技巧,如使用通配符、结合其他命令、在脚本中使用,以及实际应用案例,帮助读者提高工作效率。
11 3
|
2天前
|
安全 网络协议 Linux
本文详细介绍了 Linux 系统中 ping 命令的使用方法和技巧,涵盖基本用法、高级用法、实际应用案例及注意事项。
本文详细介绍了 Linux 系统中 ping 命令的使用方法和技巧,涵盖基本用法、高级用法、实际应用案例及注意事项。通过掌握 ping 命令,读者可以轻松测试网络连通性、诊断网络问题并提升网络管理能力。
9 3
|
6天前
|
监控 Linux 开发者
如何在 Linux 中优雅的使用 head 命令,用来看日志简直溜的不行
`head` 命令是 Linux 系统中一个非常实用的工具,用于快速查看文件的开头部分内容。本文介绍了 `head` 命令的基本用法、高级用法、实际应用案例及注意事项,帮助用户高效处理文件和日志,提升工作效率。
17 7
|
2天前
|
监控 安全 Linux
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景,包括 ping(测试连通性)、traceroute(跟踪路由路径)、netstat(显示网络连接信息)、nmap(网络扫描)、ifconfig 和 ip(网络接口配置)。掌握这些命令有助于高效诊断和解决网络问题,保障网络稳定运行。
11 2