head和tail查看指定行的内容

 admin   2020-07-27 12:04   237 人阅读  0 条评论

[root@localhost etc]# tail -n 2 yum.conf

# PUT YOUR REPOS HERE OR IN separate files named file.repo

# in /etc/yum.repos.d

显示最后2

 

[root@localhost etc]# tail -n +21 yum.conf

//此处是一空行

# PUT YOUR REPOS HERE OR IN separate files named file.repo

# in /etc/yum.repos.d

从第21行开始显示后面的所有行,即第21行到第23

 

显示第11行到第20(总共23)

从第11行开始显示,但不包括最后3

[huage@localhost etc]$ head -n -3 yum.conf |tail -n +11

 

显示前20行,但从第11行开始

[huage@localhost etc]$ head -n 20 yum.conf |tail -n +11

 

显示除最后3行以外的所有行,但只显示最后10

[huage@localhost etc]$ head -n -3 yum.conf |tail -n 10

 

显示前20行中的后10

[huage@localhost etc]$ head -n 20 yum.conf |tail -n 10

 

从第11行开始显示,但只显示前10

[huage@localhost etc]$ tail -n +11 yum.conf |head -n 10

 

从第11行开始显示,但不包括最后3

[huage@localhost etc]$ tail -n +11 yum.conf |head -n -3

 

显示最后13行中的前10

[huage@localhost etc]$ tail -n 13 yum.conf |head -n 10

 

显示最后13行中除末尾的3行以外的前10

[huage@localhost etc]$ tail -n 13 yum.conf |head -n -3


本文地址:https://liuchunjie.top/?id=227
版权声明:本文为原创文章,版权归 admin 所有,欢迎分享本文,转载请保留出处!

 发表评论


表情

还没有留言,还不快点抢沙发?