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