in reply to Executing a perl script from a perl script???

One way of doing this would be -
$cmd = 'script.pl'; $var1 = 'foo'; $var2 = 'bar'; # this executes $cmd with $var[12] as arguments system("perl $cmd $var1 $var2");
Now in script.pl you could do this
($var1, $var2) = @ARGV;
or this
$var1 = shift @ARGV; $var2 = shift @ARGV;
to get the variables you passed over. So as you can see there's are quite a large number of ways of doing this. You may want to go the Getopt::Std route, or perhaps using davorg's suggestion and use fork() instead (which saves you having to pass variables).
HTH

broquaint