Mercurial > hg > Database > Alice
view scripts/ring_experiment.sh @ 489:9a7dd7591ddc dispose
bug fix
author | sugi |
---|---|
date | Tue, 09 Dec 2014 14:25:57 +0900 |
parents | f60c0246c8ce |
children |
line wrap: on
line source
#!/bin/bash cnt=$1 # start num d=$2 # diff max=$3 # max num while [ $cnt -lt $max ] do ./ring_run.sh 10 $cnt cnt=`expr $cnt + $d` done wait