alex Wed Oct 3 15:34:47 2001 EDT
Added files:
/r2/tools/scripts FixPerms.sh
Log:
Simple Fix perm script, probably to be integrated into Make
Index: r2/tools/scripts/FixPerms.sh
+++ r2/tools/scripts/FixPerms.sh
find . -type f -exec chmod u+rw,g+rw,a+r {} \;
find . -type f -exec chmod u-Xx,g-Xx,a-Xx {} \;
find . -type f -name '*.sh' -exec chmod u+x,g+x {} \;
find . -type f -name '*.pl' -exec chmod u+x,g+x {} \;
find . -type d -exec chmod u+rwx,g+rwx,a+rx {} \;
find . -type d -name 'CVS' -exec chmod -R u+rwx,g+rw,a+rx {} \;
find . -type f -path '*CVS*' -prune -exec chmod u+rw,g+rw,a+r {} \;
|