head 1.2; access; symbols ISELECT_1_1_0:1.1.1.1 ISELECT_1_0_4:1.1.1.1 ISELECT_1_0_0:1.1.1.1 vendor:1.1.1; locks; strict; comment @# @; 1.2 date 2000.07.25.11.41.00; author rse; state dead; branches; next 1.1; 1.1 date 97.09.16.08.05.05; author rse; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 97.09.16.08.05.05; author rse; state Exp; branches; next ; desc @@ 1.2 log @Merge conflicts @ text @#!/bin/sh ## ## fixperm -- Fix File Permission inside Sourcetree ## Copyright (c) Ralf S. Engelschall, All Rights Reserved. ## for p in $*; do for file in `find $p -depth -print`; do if [ -f $file ]; then if [ -x $file ]; then echo " $file (FILE/EXEC)" chmod 775 $file chown rse.users $file else echo " $file (FILE/REGULAR)" chmod 664 $file chown rse.users $file fi continue fi if [ -d $file ]; then echo " $file (DIR)" chmod 775 $file chown rse.users $file continue fi echo " $file (UNKNOWN)" done done ##EOF## @ 1.1 log @Initial revision @ text @@ 1.1.1.1 log @Import iSelect 1.0.0 @ text @@