定时删除脚本

windows:
find /d/ScriptTest -cmin +60 -type d -exec /c/Program\ Files/Git/usr/bin/rm.exe -rf {} ;

linux:
sudo find . -cmin +60 -name "*" -exec /bin/rm -rf {} ;

你可能感兴趣的:(定时删除脚本)