查看一个文件的前5行?查看一个文件的后5行?“-f”选项有什么用?

2022-10-20 09:24:39
```Linux head :查看文件头几行 head /etc/services #默认显示10行 head -n 5 /etc/services #-n 5 表示显示5行 tail -n 5 #表示后5行 tail -f 监视文件变化 ```