|
@@ -49,7 +49,9 @@ if [[ "${filescount}" == "0" ]]; then
|
|
|
exit $?
|
|
exit $?
|
|
|
fi
|
|
fi
|
|
|
if [[ "${filescount}" == "1" ]]; then
|
|
if [[ "${filescount}" == "1" ]]; then
|
|
|
- logfile="${keyspace}.1test.log"
|
|
|
|
|
|
|
+ n=`ps -ef | grep "mql %@" | grep -v grep | wc -l`
|
|
|
|
|
+ n=`expr $n + 1`
|
|
|
|
|
+ logfile="${keyspace}.${n}test.log"
|
|
|
./mql "$@" 2>&1 | tee ${logfile}
|
|
./mql "$@" 2>&1 | tee ${logfile}
|
|
|
exit $?
|
|
exit $?
|
|
|
fi
|
|
fi
|