tail
tail命令常使用选项-f
-f, --follow[={name|descriptor}]
output appended data as the file grows;
an absent option argument means 'descriptor'
例如:
tail -1000f sys.log
按回车键增加空白行,按Ctrl + C 结束
vi / vim
vi 文件名
如:vi sys.log
进入文件后使用/字符(从光标出向尾)或?字符(从光标出向头)搜索 + 回车键
找到内容后按n跳到下一个,按h、j、k、l可以移动光标
grep
grep用法可以很多种,列举常用的。
用法:grep -C 20 “搜索字符” 文件名
-C:表示找到目标时,同时显示目标上下20行内容。文章来源:https://www.toymoban.com/news/detail-817570.html
[shy@localhost ~]$ grep -C 2 123 01.log
123
456
789
123
iii
uuu
[shy@localhost ~]$ grep -C 1 123 01.log
123
456
789
123
iii
[shy@localhost ~]$ grep -C 1 '123' 01.log
123
456
789
123
iii
[shy@localhost ~]$ grep -C 1 "123" 01.log
123
456
789
123
iii
[shy@localhost ~]$
可以加 -n输出行号:文章来源地址https://www.toymoban.com/news/detail-817570.html
grep -C 1 -n "123" 01.log
到了这里,关于Linux查找日志常用命令的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!