一、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.txt : 表示输出文件最后5个字节;

二、head 【主要从文件的头部操作查询文件】

1、head -n 5 nowcoder.txt 【或者:head -5 nowcoder.txt 】 : 表示输出文件开头前五行; 2、head -c 5 nowcoder.txt : 表示输出文件开头的5个字节;

#!/bin/bash
tail -n 5 nowcoder.txt | cat