Mercurial > hg > Members > tatsuki > Alice
view scripts/ring_experiment.sh @ 252:b78f52865b8d
no use Queue API
author | sugi |
---|---|
date | Tue, 18 Jun 2013 16:05:53 +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