Answers:
如果要搜索的目录srch_dir
是
$ find srch_dir -cmin -60 # change time
要么
$ find srch_dir -mmin -60 # modification time
要么
$ find srch_dir -amin -60 # access time
显示在过去一个小时内创建,修改或访问的文件。
校正:ctime用于更改节点时间(虽然不确定,请指正我)
-newer
应基于Solaris的技术(基于)。
请查看此链接,然后帮助自己。
基本的代码是
#create a temp. file
echo "hi " > t.tmp
# set the file time to 2 hours ago
touch -t 200405121120 t.tmp
# then check for files
find /admin//dump -type f -newer t.tmp -print -exec ls -lt {} \; | pg
touch
如果文件尚不存在,则创建该文件。
find
我使用的Solaris 上不存在。OP说Unix,我认为这些只是Linux。