bash
x
4
1
top 25 worst offenders below the current directory
2
3
# -S to not include subdir size, sorted and limited to top 25
4
du -S . | sort -nr | head -25
Source: https://unix.stackexchange.com/a/125450
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