Mercurial > hg > Members > tatsuki > Alice
view scripts/aquarium.sh @ 165:4fd7d0caf7e3 working
add no recursive type quick sort
author | sugi |
---|---|
date | Thu, 13 Dec 2012 17:26:05 +0900 |
parents | b51d3bf971e7 |
children | 23d6a775a643 |
line wrap: on
line source
#!/bin/bash max=$1 child_num=$2 ruby ./topology/treen.rb $1 $2 > ./topology/tree.dot dot -Tpng ./topology/tree.dot > ./topology/tree.png #open ./topology/tree.png java -cp ../Alice.jar alice.topology.manager.TopologyManager -p 10000 -conf ./topology/tree.dot -log ./output/manager.log -level debug > ./output/std_manager.log & cnt=0 while [ $cnt -lt $max ] do java -cp ../Alice.jar alice.test.topology.aquarium.FishMovementTopology -host `hostname` -port 10000 -p `expr 20000 + $cnt` -log ./output/aquarium${cnt}.log -level debug > ./output/std_aquarium${cnt}.log & cnt=`expr $cnt + 1` done wait