[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
发表评论