要求
命令
备注
输出文件的前N行
head –n 行数 文件名
行数表示截取范围
输出文件的倒数N行
tail –n 行数 文件名
输出文件倒数第N行之前的所有行
head –n –行号 文件名
–行号表示倒数第N行
输出文件第N行后的所有行
tail –n +行号 文件名
+行号表示第N行之后
总结:
1.head命令的参数值前面有没有“-”号代表不同的含义,如:
①head –n 5 test.txt:截取test.txt文件的前5行
②head –n -5 test.txt:截取test.txt文件倒数第5行前的所有行
2.Tail命令的参数值前面有没有“+”号代表不同的行业,如:
①tail –n 5 test.txt:截取test.txt文件的倒数5行
②tail –n +5 test.txt:截取test.txt文件第5行之后的所有行