操作下面之前注意系统的date时间
find/root/test目录下面从2011年6月1号12点00到2011年6月1号12点30分哪些文件更新过
touch -t 201106011200 start
touch -t 201106011250 stop
find /root/test/ -newer start -a ! -newer stop -exec ls -l {} \;
本文转自 liang3391 51CTO博客,原文链接:http://blog.51cto.com/liang3391/579152