How do you find the largest top files and directories on a Linux?
du -sh *
Specific folder:
du -a /var | sort -n -r | head -n 20