1.前言. linux可以实现从某一段日志读取,然后用more每屏显示一定行数, 2.代码. Java代码 tail -n 4700 aa.log |more -1000 从末尾返前4700行的位置,往下找1000行 ctrl+f快捷键翻页 .