Re: Argh! Sorry for the spam...

2001-08-03 Thread Brendan Byrd
David J. MacKenzie wrote: > I'd be inclined to use find and xargs to do selective chmodding, > rather than adding special cases to chmod. > > find . -type d -print0 | xargs -0 chmod a+r That's a bit long and overwinded for such a common operation. After all, I coded the thing in because of a

Re: Argh! Sorry for the spam...

2001-08-02 Thread David J. MacKenzie
I'd be inclined to use find and xargs to do selective chmodding, rather than adding special cases to chmod. find . -type d -print0 | xargs -0 chmod a+r ___ Bug-fileutils mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-fileutils