题解 | #打印文件的最后5行#

打印文件的最后5行

https://www.nowcoder.com/practice/ff6f36d357d24ce5a0eb817a0ef85ee2

一、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

全部评论

相关推荐

挣K存W养DOG:他真的很中意你,为什么不回他
点赞 评论 收藏
分享
10-24 13:36
门头沟学院 Java
Zzzzoooo:更新:今天下午有hr联系我去不去客户端,拒了
点赞 评论 收藏
分享
评论
2
3
分享
牛客网
牛客企业服务