Subject: Re: access privileges.
From: andrew morgan (morgan@orst.edu)
Date: Tue Oct 31 2000 - 09:36:45 EST
On Tue, 31 Oct 2000, Howard Schultens wrote:
> andrew morgan wrote:
> >
> > .....
> >
> > Also, you probably don't want the setgid bit for files, just directories.
> > You can fix this by going to the top-level directory you want to make the
> > change and running:
> >
> > find ./ -type f | xargs chmod 770
> >
> > Andy
>
>
> I tried this out, and in its present form it doesn't work with
> Apple filenames that have embedded blanks. There must
> be a trick to escape the blanks in this command -- can you help me out
> here?
Yeah, I forgot about that little trick. You can use:
find ./ -type f -print0 | xargs --null chmod 770
Andy
This archive was generated by hypermail 2b28 : Wed Jan 17 2001 - 14:32:31 EST