1 查看文件的前多少行
head -100 app.log
2 查看文件的后多少行
tail -100 app.log
3 查看文件的几行到几行
sed -n '10,100p' app.log
本文共 148 字,大约阅读时间需要 1 分钟。
head -100 app.log
2 查看文件的后多少行
tail -100 app.log
3 查看文件的几行到几行
sed -n '10,100p' app.log
转载于:https://www.cnblogs.com/zongyl/p/10131112.html