dotfiles/.local/bin/scripts/s
xeruf 1e399f122b config/shell: update & move aliases & helpers
Among others to remove excessive sudo prompts
2021-09-16 14:18:26 +02:00

6 lines
292 B
Bash
Executable file

#!/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]) depth=$1; shift;; esac
(du --max-depth "${depth:-1}" -xhat 50M "$@" | sort -h | grep -v "^0") ||
(du --max-depth "${depth:-1}" -xha "$@" | sort -h | tail)