/ Published in: Bash
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#the entire filesystem, starting at '/' du -a /* | sort -n -r | head -n 10 #or for a particular directory: du -a /home/username/ | sort -n -r | head -n 10