88113816919925d0e977dd8649803b190c611d7d
[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   0>launcher.trace
17   ./operation.sh $@
18   cd - >/dev/null
19 done
20