You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
218 B
15 lines
218 B
#!/bin/sh
|
|
|
|
DIRNAME=`dirname $0`
|
|
FILNAME=`basename $0`
|
|
|
|
if [ "x$DIRNAME" != "x." ]; then
|
|
cd $DIRNAME
|
|
exec sh ./$FILNAME
|
|
fi
|
|
|
|
cd ..
|
|
chown -R fernando.hogar .
|
|
chmod -R g+w,o-rwx .
|
|
find -type d -exec chmod g+s {} \;
|
|
|
|
|