annotate scripts/fishAlpha_run.sh @ 110:aa9fc077c286
working
remove host from checkFishLocation
author |
sugi |
date |
Sun, 15 Jul 2012 21:32:48 +0900 |
parents |
a8f77957a477 |
children |
|
rev |
line source |
107
|
1 #!/bin/bash
|
|
2 max=$1
|
|
3 child_num=$2
|
|
4 ruby ./topology/treen.rb $1 $2 > ./topology/tree.dot
|
|
5 #dot -Tpng ./topology/tree.dot > ./topology/tree.png
|
|
6 #open ./topology/tree.png
|
|
7 java -cp ../Alice.jar alice.topology.manager.TopologyManager -p 10000 -conf ./topology/tree.dot -log ./output/manager.log -level debug > ./output/std_manager.log &
|
|
8
|
|
9 cnt=0
|
|
10 while [ $cnt -lt $max ]
|
|
11 do
|
|
12 java -cp ../Alice.jar alice.test.topology.fishmodel.alpha.FishMovementTopology -host `hostname` -port 10000 -p `expr 20000 + $cnt` -log ./output/modelalpha${cnt}.log -level debug > ./output/std_modelalpha${cnt}.log &
|
|
13 cnt=`expr $cnt + 1`
|
|
14 done
|
|
15 wait
|