view scripts/ring_experiment.sh @ 49:ed0ff4512e8c

update msgpack 0.6.5 to 0.6.6
author kazz <kazz@cr.ie.u-ryukyu.ac.jp>
date Sat, 04 Feb 2012 19:26:07 +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