G
gyanku
Hi All:
I have loop in my perl program
foreach (@mytest)
{
system($cmd2);
}
The system($cmd) takes a long time. I have other machines available.
Can I login from the perl script and run the perl command on those
machine to reduce run time.
Please show me how todo that. How would I know where in the mytest list
I should log into the other machine.
How will when one task is finished another would start.
Some sketchy code fragment would help.
Thanks in advance.
-Mkesh
I have loop in my perl program
foreach (@mytest)
{
system($cmd2);
}
The system($cmd) takes a long time. I have other machines available.
Can I login from the perl script and run the perl command on those
machine to reduce run time.
Please show me how todo that. How would I know where in the mytest list
I should log into the other machine.
How will when one task is finished another would start.
Some sketchy code fragment would help.
Thanks in advance.
-Mkesh