导出最近10分钟内修改的文件 - zhongguogu/Linux GitHub Wiki
zhongguo.gu@sh-pip-pdfengine03:/datayes/chinalife/html$ find . -cmin -100 | xargs tar -czf ~/backup.tar.gz
If the dir to search is srch_dir then either
$ find srch_dir -cmin -60 # change time or
$ find srch_dir -mmin -60 # modification time or
$ find srch_dir -amin -60 # access time shows files created, modified or accessed in the last hour.
correction :ctime is for change node time (unsure though, please correct me )