[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: File Sizes
- From: Alex Janssen <ajx ourwoods org>
- To: redhat-list redhat com
- Subject: Re: File Sizes
- Date: Thu Dec 12 20:53:01 2002
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]