On Tue, 30 Jul 2002 11:00:09 -0500 (CDT), you wrote:

>Try this:
>
>find / -type d -maxdepth 1 | egrep -v "home|proc|^/$"  | xargs du -sh
>
>That should show usage of each directory in /, not including /home and 
>/proc.

Or, just for variety:

du -h -x --max-depth=1 --exclude=home --exclude=proc 

which does the same thing, I think! (I can't see how to 'or' the excludes
without writing longhand)



-- 
redhat-list mailing list
Unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to