1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-05-02 19:53:23 -07:00
rc/sh/dbusiest

8 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