1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-25 16:57:12 -07:00
rc/sh/busiest

28 lines
613 B
Plaintext
Raw Normal View History

#!/usr/bin/env zsh
2021-07-29 00:37:35 -07:00
# YES_ZSH
# NO_BASH
# NO_DASH
2021-09-23 06:48:05 -07:00
# NO_ASH
2021-07-29 00:37:35 -07:00
busiest() { ### @-
### list directories in descending order by the number of files in them,
### counted recursively.
2021-08-01 08:32:45 -07:00
###
### ```
### $ cd && busiest | head -n3
### 144181 src
### 48840 work
### 21042 play
2021-08-01 08:32:45 -07:00
### ```
2021-07-29 00:37:35 -07:00
[ $# -le 0 ] || { printf "%s\n" "$0: too many arguments" >&2; return 1; }
local c= d=
2021-07-29 00:37:35 -07:00
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 "$@"