IT源码网

Linux中head和tail方法的使用

sanshao 2021年04月03日 程序员 406 0

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 

评论关闭
IT源码网

微信公众号号:IT虾米 (左侧二维码扫一扫)欢迎添加!