- head
$head <file> 打印前10行
$head -n <number> <file> 打印前number行
#head -n -M <file> 打印除了最后M行之外的所有行,注意-M表示一个负数而不是选项
- tail
$tail <file> 打印后10行
$tail -n <number> <file> 打印后number行
$tail -n +(M+1) 打印前M行之外的所有行
$tail -f <file> 密切关注文件中新添加的内容,并随着数据的增加爱持续保持更新