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

16-head 简明笔记

时间:2016-12-16 22:25:12      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:命令行   tool   option   路径名   输入   dem   内容   ima   img   

显示文件的头部

head [options] [file-list]

 

参数

file-list 为要head显示的文件的路径名列表。当指定多个文件时,head在显示每个文件的前几行内容之前显示对应的文件名

当不指定文件时,head将从标准输入获得输入

 

选项

-c n                显示文件的前n个字节(字符)

-n n                显示文件的前n行,也可以使用-n来指定显示的n行

-q                   当在命令行上指定多个文件名时,它禁止显示头部

 

注意

默认情况下,head将显示文件的前10行

 

示例

原文件

技术分享
$ cat demo
line one
line two
line three
line four
line five
line six
line seven
line eight
line nine
line ten
line eleven
技术分享

 

head

技术分享
$ head demo
line one
line two
line three
line four
line five
line six
line seven
line eight
line nine
line ten
技术分享

默认显示10行

 

head -n

$ head -n 4 demo
line one
line two
line three
line four

显示指定的行数

 

head -n 负数

技术分享
$ head -n -4 demo
line one
line two
line three
line four
line five
line six
line seven
技术分享

显出除最后4行外的其他行

 

head -3 多个文件

技术分享
$ head -3 demo dd
==> demo <==
line one
line two
line three

==> dd <==
line one
line two
line three
技术分享

显示多个文件的前3行

 

head -c

$ head -c 4 demo
line$ 

显示文件的前4个字符,注意此处不换行

16-head 简明笔记

标签:命令行   tool   option   路径名   输入   dem   内容   ima   img   

原文地址:http://www.cnblogs.com/luoahong/p/6188568.html

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