evalAll.sh 322 Bytes
Newer Older
Juon Kawakami's avatar
init  
Juon Kawakami committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
. $(dirname $0)/config.sh

PATH=$PATH:$HOME/scripts/evaluation

cd $HOME/$EVALDIR

for DIR in *; do
       echo $DIR "==="
    #if [[ -d $DIR && ! -s $DIR/index.html ]]; then
     if [[ $DIR != "viewer" ]]; then
       mapSummary.sh $DIR ||echo "error"
#	echo $DIR
    fi;
done;

make_overview.py > index.html