码迷,mamicode.com
首页 > 其他好文 > 详细

head命令

时间:2018-07-06 16:39:05      阅读:321      评论:0      收藏:0      [点我收藏+]

标签:16px   pre   txt   false   bar   默认   toolbar   ...   www   

head命令

output the first part of files输出文件前几行,默认是前10行

使用权限

所有使用者

语法格式

head [OPTION]... [FILE]...

常用选项

-n+数字 显示文件前n行

[root@www1 ~]# seq 1 10 >>test666.txt
[root@www1 ~]# cat test666.txt
aaa 111 222
ccc 333 444
aaa 111 222
ggg 555 666
bbb 777 888
eee 999 000
eee 999 000
1
2
3
4
5
6
7
8
9
10
[root@www1 ~]# head test666.txt
aaa 111 222
ccc 333 444
aaa 111 222
ggg 555 666
bbb 777 888
eee 999 000
eee 999 000
1
[root@www1 ~]# head -n 1 test666.txt
aaa 111 222
[root@www1 ~]# head -2 test666.txt
aaa 111 222
ccc 333 444
[root@www1 ~]#



head命令

标签:16px   pre   txt   false   bar   默认   toolbar   ...   www   

原文地址:http://blog.51cto.com/12107790/2137237

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!