一、tail 【主要从文件的尾部操作查询文件】 1、tail -f nowcoder.txt : 实时输出文件的最新更新内容; 2、tail -n 5 nowcoder.txt [或者:tail -5 nowcoder.txt] : 输出文件的最后5行; 3、tail -n +5 nowcoder.txt : 输出从第5行开始到文件结尾的内容; 4、tail -n -5 nowcoder.txt : 输出从倒数 第五行开始到文件结尾的内容; 5、tail nowcoder.txt : 不加任何参数,默认输出10行; 6、tail -c 5 nowcoder....