Fix new variables
[anna.git] / example / diameter / launcher / deployments / st-client / operation_all.sh
1 #!/bin/bash
2 cd `dirname $0`
3 if [ ! -d "ADMLS" ]
4 then
5   echo
6   echo "Run './configure.sh' first !"
7   echo
8   exit 1
9 fi
10
11 for op in `ls ADMLS/*/operation.sh`
12 do
13   dn_op=`dirname $op`
14   cd $dn_op
15   echo -n "Instance `basename $dn_op`: "
16   ./operation.sh $@
17   cd - >/dev/null
18 done
19