Standard human readable
du -h
Human readable looking for the 5 largest in the current dir
sudo du -hs * | sort -rh | head -5
sudo du -a | sort -n -r | head -n 5
Standard human readable
du -h
Human readable looking for the 5 largest in the current dir
sudo du -hs * | sort -rh | head -5
sudo du -a | sort -n -r | head -n 5