blob: 41725d0b499ec35307a467557682a73f769c4649 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/bash
set -xeuf
cd $(dirname $(readlink -f $0))
if [ "$1" == "c" ];then
./ass create "$2" && export ASS_CREATED="$2"
for i in `env | grep -v '^ASS_CREATED=' | grep "^ASS" | cut -d '=' -f 1`;do
e=`echo $i | cut -d '_' -f 2 | tr '[A-Z]' '[a-z]'`
eval con=\$$i
$0 s "$e" "$con"
done
else if [ "$1" == "s" ]
then
./ass set "${ASS_CREATED}" "${2}" "${3}"
else
echo "you are made of stupid!"
cat $0
exit 23
fi
fi
|