2020-11-23 23:20:02 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# shows size statistics for subfolders
|
|
|
|
# max depth is equal to the first argument if it is a number or 1
|
2020-12-23 12:43:15 +00:00
|
|
|
case "$1" in [0-9]) depth=$1; shift;; esac
|
2021-01-23 18:51:23 +00:00
|
|
|
(sudo du --max-depth "${depth:-1}" -xhat 50M "$@" | sort -h | grep -v "^0") ||
|
|
|
|
(sudo du --max-depth "${depth:-1}" -xha "$@" | sort -h | tail)
|