On Thu, 2002-12-12 at 04:10, IS Department wrote:
> I would like to get a listing of the 100 or 500 or 1000 largest files on my system. 
>Does anyone know of a command or script to do this? I would want file name/location 
>and size in bytes.
> 
> Thanks

Try :
        find . -size +2000 -size -4000 -exec ls -l {} \; | more

This command finds all files greater than 1000K and less than 2000K

Alex Janssen




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to