Bash/Linux: Show largest files in directory, sorted

top 25 worst offenders below the current directory

# -S to not include subdir size, sorted and limited to top 25
du -S . | sort -nr | head -25

Source: https://unix.stackexchange.com/a/125450