如何在1/1/2017之前删除所有文件

时间:2018-07-04 09:35:13

标签: linux

请在2017年1月1日之前找到所有文件,并在Linux平台上将其删除

我已经搜索并找到了这个发现。/-type f -mtime -exec rm -rf {} \;那么如何指定上述日期

1 个答案:

答案 0 :(得分:-1)

希望这些命令对您有帮助

touch -d "2010-11-21 23:59:59" /tmp/date.start;
touch -d "2010-11-23 00:00:00" /tmp/date.end;
find ./ -type f -newer /tmp/date.start ! -newer /tmp/date.end -exec rm {} \;