shell脚本定时清理某个文件夹下面的文件
#!/bin/sh #删除超过指定天数的日志文件&删除指定文件夹下面的所有问题一般指runtime find /www/wwwroot/shop.lpdhzx.com/public/log/*/ -mtime +2 -name "*.txt" -exec rm -rf {} \; rm -rf /www/wwwroot/shop.lpdhzx.com/runtime/log/* ; rm -rf /www/wwwroot/quanmingzhan/quanminzhan.php4.wlphp.com/app/Runtime/Logs/* ; rm -rf /www/wwwroot/plat.quanmindian.com/app/Runtime/Logs/* ; find /www/wwwroot/plat.shopv5.quanmindian.com/log/*wdt*/ -mtime +2 -name "*.txt" -exec rm -rf {} \;
版权声明:若无特殊注明,本文皆为《菜鸟站长》原创,转载请保留文章出处。
本文链接:shell脚本定时清理某个文件夹下面的文件 - https://wziyi.net/?post=419