這個指令可以把你帳號下的垃圾桶,放入超過一天的檔案刪掉find ~/.Trash -depth 1 -ctime +1d -exec rm -rf {} \; 外接 USB 磁碟的話,路徑改這樣find /Volumes/*/.Trashes/*/ -depth 1 -ctime +1d -exec rm -rf {} \; 把這指令放進 crontab 定期執行即可至於 crontab 怎麼用,自己 google