1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-29 02:17:12 -07:00
rc/sh/dbusiest

8 lines
144 B
Plaintext
Raw Normal View History

2013-06-28 05:22:14 -07:00
#!/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