[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: refined du on /home
- From: Gordon Messmer <yinyang eburg com>
- To: redhat-list <redhat-list redhat com>
- Subject: Re: refined du on /home
- Date: Mon, 11 Sep 2000 15:24:38 -0700 (PDT)
On Mon, 11 Sep 2000, eric clover wrote:
> is there a way to refine a du on a dir(/home) with sub dirs(4000usersdirs)
> to list only dirs that are over xxx sixe???
cd /home
du -s * | awk '{ if( $1 > 3000 ) { print; } }'
where 3000 is the minimum size in KB
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]