#!/bin/sh
#
#
Low=$2
High=$3

while [ "$Low" != "$High" ]
do
   Id=0${Low}_G7LED
   mkjob.sh $1 $Id
   Low=`expr $Low + 1`
done
