Re: How can i make a perl program lauch another perl program that takes options



On 6/28/07, alex.jamestin+usenet@xxxxxxxxx <alex.jamestin@xxxxxxxxx> wrote:
snip
I've tried bypassing the shell [ system(xxx,xxx,xx)] but that doesn't
seem to help.
snip

Hmm, what OS are you using? And by system(xxx,xxx,xx) do you mean

system("perl vplan_all.pl", "5.6", "24.0") == 0
or die "blah";

or

system( "perl", "vplan_all.pl", "5.6", "24.0") == 0
or die "blah";
.