#!/usr/bin/perl

($startrun,$endrun)=@ARGV;

for($i=$startrun;$i<=$endrun;$i++){

    system "processRun ${i}";

}
