Re: chmod equivalent to find commands

2005-03-13 Thread Loren M. Lang
or other permissions. > > - Original Message - > From: "Loren M. Lang" <[EMAIL PROTECTED]> > To: "Giorgos Keramidas" <[EMAIL PROTECTED]> > Subject: Re: chmod equivalent to find commands > Date: Sun, 13 Mar 2005 02:15:00 -0800 > > >

Re: chmod equivalent to find commands

2005-03-13 Thread Fafa Diliha Romanova
g" <[EMAIL PROTECTED]> To: "Giorgos Keramidas" <[EMAIL PROTECTED]> Subject: Re: chmod equivalent to find commands Date: Sun, 13 Mar 2005 02:15:00 -0800 > > On Sat, Mar 12, 2005 at 09:53:02PM +0200, Giorgos Keramidas wrote: > > On 2005-03-12 10:30, Eric McCoy <[EMAI

Re: chmod equivalent to find commands

2005-03-13 Thread Fafa Diliha Romanova
To: "Fafa Diliha Romanova" <[EMAIL PROTECTED]> Subject: Re: chmod equivalent to find commands Date: Sun, 13 Mar 2005 02:09:12 -0800 > > On Sat, Mar 12, 2005 at 06:53:59AM -0500, Fafa Diliha Romanova wrote: > > hello. > > > > i know there's an equivalent to t

Re: chmod equivalent to find commands

2005-03-13 Thread Loren M. Lang
On Sun, Mar 13, 2005 at 02:09:12AM -0800, Loren M. Lang wrote: > On Sat, Mar 12, 2005 at 06:53:59AM -0500, Fafa Diliha Romanova wrote: > > hello. > > > > i know there's an equivalent to these two find commands that > > can be summed up in one chmod command: > > > > find . -type d -exec chmod 755

Re: chmod equivalent to find commands

2005-03-13 Thread Loren M. Lang
On Sat, Mar 12, 2005 at 09:53:02PM +0200, Giorgos Keramidas wrote: > On 2005-03-12 10:30, Eric McCoy <[EMAIL PROTECTED]> wrote: > >Fafa Diliha Romanova wrote: > >> hello. > >> > >> i know there's an equivalent to these two find commands that > >> can be summed up in one chmod command: > >> > >> fin

Re: chmod equivalent to find commands

2005-03-13 Thread Loren M. Lang
On Sat, Mar 12, 2005 at 06:53:59AM -0500, Fafa Diliha Romanova wrote: > hello. > > i know there's an equivalent to these two find commands that > can be summed up in one chmod command: > > find . -type d -exec chmod 755 {} \; > find . -type f -exec chmod 644 {} \; The EXACT equivalent would be:

Re: chmod equivalent to find commands

2005-03-12 Thread Giorgos Keramidas
On 2005-03-12 10:30, Eric McCoy <[EMAIL PROTECTED]> wrote: >Fafa Diliha Romanova wrote: >> hello. >> >> i know there's an equivalent to these two find commands that >> can be summed up in one chmod command: >> >> find . -type d -exec chmod 755 {} \; >> find . -type f -exec chmod 644 {} \; Uhm, why

Re: chmod equivalent to find commands

2005-03-12 Thread Dan Nelson
In the last episode (Mar 12), Fafa Diliha Romanova said: > i know there's an equivalent to these two find commands that > can be summed up in one chmod command: > > find . -type d -exec chmod 755 {} \; > find . -type f -exec chmod 644 {} \; > > it fixes my permissions ... > i haven't tested this

Re: chmod equivalent to find commands

2005-03-12 Thread Eric McCoy
Fafa Diliha Romanova wrote: hello. i know there's an equivalent to these two find commands that can be summed up in one chmod command: find . -type d -exec chmod 755 {} \; find . -type f -exec chmod 644 {} \; it fixes my permissions ... i haven't tested this yet but i think it's wrong: chmod -R u+r