Re: [gentoo-user] Listing directories with size greater than...

2005-07-24 Thread Chris Cox
On Friday 22 July 2005 09:17 am, Ryan Viljoen wrote: I need some help with listing home directories that are greater than i given size. I have tried find /home -type d -size +5k and find /home -type d -size +5k -iname * Both without much success... Any help will be :D Cheers Rav

RE: [gentoo-user] Listing directories with size greater than...

2005-07-22 Thread Dave Nebinger
I need some help with listing home directories that are greater than i given size. I have tried find /home -type d -size +5k and find /home -type d -size +5k -iname * Both without much success... find will not calculate folder sizes (as you've already seen). You'll need to use du

Re: [gentoo-user] Listing directories with size greater than...

2005-07-22 Thread Richard Fish
Dave Nebinger wrote: I need some help with listing home directories that are greater than i given size. I have tried find /home -type d -size +5k and find /home -type d -size +5k -iname * Both without much success... find will not calculate folder sizes (as you've already seen).

Re: [gentoo-user] Listing directories with size greater than...

2005-07-22 Thread Uwe Thiem
On 22 July 2005 15:17, Ryan Viljoen wrote: I need some help with listing home directories that are greater than i given size. I have tried find /home -type d -size +5k and find /home -type d -size +5k -iname * Both without much success... du -k --max-depth=1 /home | sort -nrk1