Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
23 |
reyssat |
1 |
#! /bin/sh |
|
|
2 |
|
|
|
3 |
cd $wims_server_base/.. |
|
|
4 |
dir=`pwd` |
|
|
5 |
for f in $wims_exec_parm |
|
|
6 |
do |
|
|
7 |
test=`stat -Lt $f | cut -d' ' -f4 | grep '..[048c]0'` |
|
|
8 |
if [ -e $f ] && [ -z "$test" ]; then |
|
|
9 |
chmod og-rwx $f |
|
|
10 |
echo $dir/$f |
|
|
11 |
fi |
|
|
12 |
done |
|
|
13 |
|