view scripts/ring_experiment.sh @ 410:74e13553e3e3 dispose

change call do setKey in constractor
author tatsuki
date Sat, 05 Jul 2014 18:27:55 +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