linux 使用-newermt查找某天的文件
linux 系统中,可以使用find -newermt查找某天发生改变的日志文件,具体命令如下:
- # find / -name "*.log" -newermt '2020-12-22 00:00:00' ! -newermt '2020-12-22 23:59:59' -exec ls -l {} \;
- # find / -name "*.log" -newermt '2020-12-22 00:00:00' ! -newermt '2020-12-22 23:59:59' |xargs ls -al

要有纵死不降的气概,信念也要变成执念!做人宁可直中取,不可曲中求!
相关推荐
-
用PHP读取Excel、CSV文件2025-04-05 00:55:03
-
php替换字符你知道么,基础之数据类型--字符串2025-04-05 00:52:06
-
mysql insert 有哪4种形态?2025-04-05 00:40:40
-
php架构之CGI、FastCGI、php-fpm有什么关系?原来这么简单
php架构之CGI、FastCGI、php-fpm有什么关系?原来这么简单2025-04-05 00:37:41 -
php中抽象类和接口的对比2025-04-05 00:24:27