Rev 23 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
23 | reyssat | 1 | #! /bin/sh |
2 | |||
3 | cd .. |
||
4 | testd=`find $wims_exec_parm -follow -type d \! -perm -11 2>/dev/null | head -100` |
||
5 | testf=`find $w_wexec2 -follow -type f \! -perm -11 2>/dev/null | head -100` |
||
6 | test="$testd $testf" |
||
7 | echo "$test" | head -60 |
||
8 | if [ ! -z "$testd$testf" ]; then chmod a+rx $test; fi |
||
9 |