view scripts/ring_experiment.sh @ 173:23d6a775a643 working

fix getResource fail
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 14 Jan 2013 19:21:13 +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