Tuesday 19 July 2011

Find large files on a Unix box

Here is a command you can use to find large files. You will need to be running this a root user

find / -size +50M -printf "%s - %p\n" | sort -r

No comments:

Post a Comment