[linux ]find命令是用正则匹配目录查找文件
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
我们经常是用linux下的find命令去查找搜索日志,比如服务器一堆按日期的日历,我要搜索/var/logs/projects的2013年12月的txt日志文件中包含date字符,如下:
find /var/logs/projects/ -name "2013-12-*.txt" | xargs grep 'date'
但是偶尔有些同学划分目录的方式是把日期作为目录,时间作为日志文件名,比如/var/logs/projects/2013-12-12/13-30-00.txt,这样的话如果搜索同样的功能,用上面的命令格式虽然也能搜索,但是不是最快最有效的,如果日志文件非常多非常大,那效率就满多了,研究了一下,用下面的命令能够更快的搜索出来:
find /var/logs/projects/ -regex '/var/log/projects/2013-12-.*/.*.txt' | xargs grep 'date'
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献1条内容
所有评论(0)