Initial commit
This commit is contained in:
commit
d3c6e29902
202 changed files with 3909 additions and 0 deletions
19
remove_wrong_x
Executable file
19
remove_wrong_x
Executable file
|
|
@ -0,0 +1,19 @@
|
|||
#!/bin/sh
|
||||
|
||||
#file=`ls -l $1 | egrep '^d' | awk ' {print $9 }'`
|
||||
#if [ -z file ]; then echo $1;fi
|
||||
|
||||
# echo gerade : $1
|
||||
# file : $file
|
||||
|
||||
if [ -d "$1" ]
|
||||
then
|
||||
echo "dir : $1"
|
||||
chmod u=rwx,g=rx,o-rwx $1
|
||||
elif [ -x "$1" ];then
|
||||
echo "exe: $1"
|
||||
chmod u=rwx,g=rx,o-rwx $1
|
||||
else
|
||||
echo "file: $1"
|
||||
chmod g=r,o-rwx $1
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue