view scripts/ring_experiment.sh @ 166:a3f7f25f884b working

show data CS could change dynamic array
author sugi
date Fri, 14 Dec 2012 17:17:41 +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