1. du -sh 所要查詢資料夾ex: du -sh /root 2. 找出 /var 底下大於 100MB 的檔案: find /var -type f -size +100000k -exec ls -lh {} \; | awk '{ print $8 ":" $5 }'