一、tail
tail -n 10 test.log 查询日志尾部最后10行的日志; tail -n +10 test.log 查询10行之后的所有日志; tail -fn 10 test.log 循环实时查看最后1000行记录(最常用的)
tail -fn 1000 test.log | grep '关键字'
tail -fn 1000 test.log | egrep '关键字'
tail -fn 1000 test.log | grep '关键字' -C50
grep "something-start" debug
tail -n 4700 aa.log |more -1000 可以进行多屏显示(ctrl + f 或者 空格键可以快捷键)
curl -X 'POST' \ 'http://www.baidu.com/TaskController/initSales?date=2024-12-30' \ -H 'accept: */*' \ -d '';
本文链接:https://blog.runxinyun.com/post/394.html 转载需授权!
留言0