Mercurial > hg > Database > Alice
view scripts/ring_experiment.sh @ 605:b7eedaa38aeb dispose
close
author | suruga |
---|---|
date | Wed, 19 Apr 2017 19:19:50 +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