Linux下,如何将最后修改时间在某个时间之前的文件删除掉?

https://zhidao.baidu.com/question/124229601.html

touch -t 190001010000 rmfile.tmp

find . -type f ! -newer rmfile.tmp -exec rm -f {} \;

猜你喜欢

转载自www.cnblogs.com/ihibin/p/9317269.html