21主机清理目录:
/Document/InfoPoint/RECV_SH_BAK/
/Document/InfoPoint/RECV/NMS_BON/
/Document/InfoPoint/PROVINCE/SEND_BAK --每月10日有大量文件
/Document/InfoPoint/PROVINCE/RECV/NORMAL_JS/ ---大量文件
清理语句:
bossuser执行:
find /Document/InfoPoint/RECV/NMS_BON/fail/ -name *.json -type f -mtime +3|xargs rm -rf
find /Document/InfoPoint/RECV_SH_BAK/ -name BOSSNM* -type f -mtime +3|xargs rm -rf
bossadm执行:
find /Document/InfoPoint/RECV_BAK/ -name BOSSNM* -type f -mtime +3|xargs rm -rf
find /Document/InfoPoint/PROVINCE/SEND_BAK/ -name *.json -type f -mtime +3|xargs rm -rf
find /Document/InfoPoint/PROVINCE/RECV/NORMAL_JS/ -name *.json -type f -mtime +3|xargs rm -rf
原文:http://11928315.blog.51cto.com/11918315/1896109