run_all.bash 658 Bytes
Newer Older
garciay's avatar
garciay committed
#!/bin/bash
#set -e
#set -vx

clear

if ! [[ $1 =~ "^[0-9]+$" ]]
then
    COUNTER=$1
else
    COUNTER=1
fi

CURPWD=`pwd`
if [ ! "${PWD##*/}" == "objs" ]
then
    cd ../objs
    if [ ! $? == 0 ]
    then
        echo "Please move to PROJECT/obj directory"
        exit 1
    fi
fi

rm ../logs/merged.log.*

for i in $(seq 1 1 $COUNTER)
do
garciay's avatar
garciay committed
    ../bin/run_mtc.bash &
    ../bin/run_ptcs.bash $2
garciay's avatar
garciay committed

    dup=$(ps -ef | grep "$0" | grep -v grep | wc -l)
    while [ ${dup} -eq 3 ]
    do
        sleep 1
        dup=$(ps -ef | grep "$0" | grep -v grep | wc -l)
    done
    sleep 1
    
    mv ../logs/merged.log ../logs/merged.log.`date +'%Y%m%d%S'`
done

exit 0