摘要:
tail -n 10 test.log 查询日志尾部最后10行的日志; tail -n +10 test.log 查询10行之后的所有日志; head -n 10 test.log 查询日志文件中的头10行日志; head -n -10 test.log 查询日志文件除了最后10行的其他所有日志; cat -n test.log |tail -n +92|hea... 阅读全文
posted @ 2016-01-06 14:46 lyongerr 阅读(847) 评论(0) 推荐(0) 编辑