如何列出日期比1月26日新的檔案?
請問如何列出日期比1月26日新的檔案?
ls -alt -R 可以列出目錄下所有檔案,但我只想列出比1月26日新的檔案
,有辦法嗎?
謝謝
------解决方案--------------------find可以做到,自己manpage看下。
------解决方案--------------------find / -mtime -1 #查找在系统中最后24小时里修改过的文件
------解决方案--------------------touch -t 01260000 timestamp1
find . -type f -newer timestamp1
rm timestamp1