Find largest directories on a Linux box
Sep.17, 2009 in
Linux/Unix
These commands will return the largest 10 directories on a Linux box.
du -k / | sort -n | tail -10
via peterbe.com
These commands will return the largest 10 directories on a Linux box.
du -k / | sort -n | tail -10
via peterbe.com
Leave a Reply