question about a short perl code about submission task?

Aaron

New member
My task is to submit multiple files from multiple directory at one time.
Here is my code
==========================================================
for($i = 102; $i < 150; $i++)
{
$FilePath = "~/nw402/namd200/$i/sub*.txt";
system("qsub $FilePath");
}
======================================================================
it didn't worked and showed error message from the first line about my for loop.
I am confused
 
Back
Top