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

Re: refined du on /home



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]