[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]

Re: File Sizes



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






[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]