Incoming from Cory Syvenky:
> 
> > You might try something like:
> >
> >   find . -type d -exec du -s {} \;
> 
> Well then the problem would become: How do I replace the . with a
> directory listing from a file?

for f in $(cat filename); do
  du -s $f
done


-- 
Any technology distinguishable from magic is insufficiently advanced.
(*)               http://www.spots.ab.ca/~keeling 
- -

_______________________________________________
clug-talk mailing list
[EMAIL PROTECTED]
http://clug.ca/mailman/listinfo/clug-talk_clug.ca

Reply via email to