mirror of
https://github.com/notwa/rc
synced 2024-11-05 05:49:02 -08:00
7 lines
144 B
Bash
7 lines
144 B
Bash
#!/bin/zsh
|
|
local c d
|
|
for d in *(FD); do
|
|
print $(find $d 2>/dev/null | wc -l) $d
|
|
done | sort -nr | while read c d; do
|
|
echo -E $c $d
|
|
done
|