Linux_Comand

df -h

du -sh

Delete folder older than 30 days

find /path -name "test-*" -type d -mtime +30 -exec rm -rf {} ;

原文地址:https://www.cnblogs.com/lilideng/p/11208715.html