日志文件过大不能用vi
log位置:
tail
head
head 仅仅显示前面几行
head -n 10 test.log 查询日志文件中的头10行日志;
head -n -10 test.log 查询日志文件除了最后10行的其他所有日志;
grep
sed
cat
tac (反向列示)
混合使用命令
日志文件过大不能用vi
log位置:
tail
head
head 仅仅显示前面几行
head -n 10 test.log 查询日志文件中的头10行日志;
head -n -10 test.log 查询日志文件除了最后10行的其他所有日志;
grep
sed
cat
tac (反向列示)
混合使用命令