UNIX No Comments 10 Fri Shell – Finding Large Files – UNIX Shell – Finding Large Files – UNIX [bash] find / -size +2000 -exec ls -s {} \; | sort -nr | more [/bash] [bash] du -sk * | sort -nk 1 [/bash]