On Sun, Oct 12, 2008 at 1:28 AM, Hervé BOUTEMY <[EMAIL PROTECTED]> wrote:
>> find . -type d -exec chmod a+rx {} \;
>> find . -type d -exec chmod g+w {} \;
>> find . -type f -exec chmod 664 {} \;
>>
>> Can't this be replaced with
>>
>> chmod -R a+rX,g+w,o-w /www/maven.apache.org/plugins/maven-XXX-pl
+1
easier and more efficient
Le lundi 06 octobre 2008, Barrie Treloar a écrit :
> Verify/change folder permissions to 0775 and files permissions to 0664
> i.e.:
>
> find . -type d -exec chmod a+rx {} \;
> find . -type d -exec chmod g+w {} \;
> find . -type f -exec chmod 664 {} \;
>
> Can't this be
Verify/change folder permissions to 0775 and files permissions to 0664 i.e.:
find . -type d -exec chmod a+rx {} \;
find . -type d -exec chmod g+w {} \;
find . -type f -exec chmod 664 {} \;
Can't this be replaced with
chmod -R a+rX,g+w,o-w /www/maven.apache.org/plugins/maven-XXX-plugin-Y.Z
-