dotfiles/.local/bin/scripts/s

10 lines
593 B
Plaintext
Raw Normal View History

#!/bin/sh
# shows size statistics for subfolders
# max depth is equal to the first argument if it is a number or 1
2023-02-07 12:19:34 +00:00
export chars=$(expr $(tput cols) - 60)
2023-11-07 09:58:02 +00:00
case "$1" in (+*) size=${1#+}G; depth=2; shift;; esac
2022-03-15 15:56:22 +00:00
case "$1" in ([0-9]) depth=$1; shift;; esac
2023-11-07 09:58:02 +00:00
(du --max-depth "${depth:-1}" -xhat ${size:-500M} "$@" | sort -h | grep -v "^0") |
2023-03-31 17:09:55 +00:00
while read line; do echo "$(tput smso)$line$(tput rmso) $(pacman -Qqo $(echo $line | awk '{print $2}') 2>/dev/null | paste -s -d',' | sed "s/\(.\{${chars}\}\).*/\1.../")"; done || #| column -t ||
(du --max-depth "${depth:-1}" -xha "$@" | sort -h | tail)