6 lines
238 B
Plaintext
6 lines
238 B
Plaintext
|
#!/bin/sh
|
||
|
# shows size statistics for subfolders
|
||
|
# max depth is equal to the first argument if it is a number or 1
|
||
|
case "$1" in [0-9]) local depth=$1; shift;; esac
|
||
|
sudo du --max-depth "${depth:-1}" -xhat 50M "$@" | sort -h | grep -v "^0"
|