发布网友 发布时间:2022-04-21 06:54
共5个回答
热心网友 时间:2022-05-03 05:08
在Linux中查找今天的文件:
重要提示 :请使用正确的日期格式作为参考find命令上面,一旦你使用了一个错误的格式,你会得到一个错误的下面:
# find . -maxdepth 1 -newermt "12-06-2016"
find: I cannot figure out how to interpret '12-06-2016' as a date or time
或者,使用下面正确的格式:
# find . -maxdepth 1 -newermt "12/06/2016"
OR
# find . -maxdepth 1 -newermt "12/06/16" 命令的详细介绍和使用可按下方式进行搜索查询:
热心网友 时间:2022-05-03 06:26
find:“find 文件目录 -name 文件名称”热心网友 时间:2022-05-03 08:01
你还是去看一下 find 这个命令的参数把。热心网友 时间:2022-05-03 09:52
find . -f -mtime +0 -print热心网友 时间:2022-05-03 12:00
看日志,/var/log/message