#!/bin/bash

for dir in $@ ; do 
    cd $dir
    nohup yadedaily -nx ../common/caseBatch.py &
    cd ..
done
