tail -n 20 err.log 显示100行到500行:head -n500 test.txt | tail -n +100 tail -n +100 test.txt| head -n 401 示例 一个很大的文件all.log 看最后20行:tail -f -n20 all.log,也可以简写为:tail -fn20 all.log 看最后20行中的包含error的行(-i表示忽略大小写):tail -f -n20 all.log ...