df -h

du -sh

Delete folder older than 30 days

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

相关文章: