# 显示日志200行
tail -200f cnpl-1_20110719.log
# 跟踪日志执行
tail -f ~/cnpl_bin/Admin_20110520.log
# tailf 其实就是 tail -f 10
tailf a.txt
# more a.txt
1. 回车自动下一行
2. 空格自动翻页
3. 按b自动回到上页
# cat 可以直接 显示多个文件
cat a.txt b.txt
# 内容追加到文件中
echo "abcfdsfdsfdsdddd" > b.txt
# -n 显示行号
cat -n a.txt b.txt
1abcdddd
2abcfdsfdsfdsdddd
# tail 显示文件后几行,head显示文件前几行
tail -6 a.txt
head -6 a.txt
# 直接tail 和head 都是显示对应文件的后十行和前十行
tail a.txt
head a.txt
#前10项
ll -t | grep 'root' | head -10
#后10项
ll -t | grep 'root' | tail -10