Chinaunix首页 | 论坛 | 博客
  • 博客访问: 359123
  • 博文数量: 60
  • 博客积分: 15
  • 博客等级: 民兵
  • 技术积分: 1138
  • 用 户 组: 普通用户
  • 注册时间: 2012-03-20 16:18
个人简介

最多140个字

文章分类

全部博文(60)

文章存档

2016年(1)

2015年(34)

2014年(25)

分类: LINUX

2015-06-26 21:14:30

//参考《Linux shell脚本攻略 第2版》

1,head

a)打印前10行:

ubuntu@VM-62-13-ubuntu:~$ head file


b)打印前5行:

ubuntu@VM-62-13-ubuntu:~$ head -n 5 file 或者ubuntu@VM-62-13-ubuntu:~$ head-5 file 


c)打印除了最后M行之外的所有行:

ubuntu@VM-62-13-ubuntu:~$ head -n -M file


2,tail

a)打印文件的最后10行:

ubuntu@VM-62-13-ubuntu:~$ tail file


b)打印最后5行:

ubuntu@VM-62-13-ubuntu:~$ tail-n 5 file 或者ubuntu@VM-62-13-ubuntu:~$ tail -5 file 


c)打印除了前M行之外的所有行:

ubuntu@VM-62-13-ubuntu:~$ tail -n +(M+1) file

d) tail -f 可以密切关注文件中新增加的内容,并随着数据的增加持续保持更新,其中可以加上一个睡眠间隔 -s,这样我们可以设置监视文件的时间间隔(如果进行Fun一直向监控的文件追加数据,则tail -f 就会一直执行知道进程Fun结束):

pgrep Fun | xargs tail -f  file -s 20 --pid

pidof Fun | xargs tail -f file -s 20 --pid


阅读(1825) | 评论(0) | 转发(0) |
0

上一篇:chattr

下一篇:Word Frequency

给主人留下些什么吧!~~