view scripts/ring_experiment.sh @ 349:335e5846e154

If you create Jar file, you should read README.
author sugi
date Mon, 21 Apr 2014 20:01:24 +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