1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-05-18 09:53:22 -07:00
rc/sh/busiest
Connor Olding d5f3f14d72 merge compatibility lines
RIP meaningful last-modified dates
2024-03-26 15:08:14 -07:00

25 lines
607 B
Bash
Executable File

#!/usr/bin/env zsh
# YES_ZSH NO_BASH NO_DASH NO_ASH
busiest() { ### @-
### list directories in descending order by the number of files in them,
### counted recursively.
###
### ```
### $ cd && busiest | head -n3
### 144181 src
### 48840 work
### 21042 play
### ```
[ $# -le 0 ] || { printf "%s\n" "$0: too many arguments" >&2; return 1; }
local c= d=
for d in *(FDN); do
print $(find $d 2>/dev/null | wc -l) $d
done | sort -nr | while read c d; do
echo -E $c $d
done
[ -z $d ] && return 1
}
[ -n "${preload+-}" ] || busiest "$@"