1. head -n 10 前10行2. head -n -10 前面所有行,除去后10行3. tail -n 3 后3行4. tail -n +3 从第3行开始,后面所有行5. tail -f 后10行,有新行加入,循环显示,直到ctrl+c停止