本文主要是介绍Linux中head和tail方法的使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
head -5 1.txt 从第五行开始到末尾
head –n 5 1.txt 同上
head –n +5 1.txt 同上
head –n -5 1.txt 除了最后五行的所有内容 少后五行
tail -5 1.txt 最后五行内容
tail –n 5 1.txt 同上
tail –n -5 1.txt 同上
tail –n +5 1.txt 从正数第五行到结尾的所有内容 少前4行
[root@localhost yuanl]# cat headdd
1
2
3
4
5
6
7
8
[root@localhost yuanl]# head -n -5 headdd
1
2
3
[root@localhost yuanl]# tail -n +5 headdd
5
6
7
8
这篇关于Linux中head和tail方法的使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!