http://qs1969.pair.com?node_id=686888


in reply to Re: Executing perl script from perl scripts
in thread Executing perl script from perl scripts

If I want to run 1.pl with one version of perl and the 2.pl with another version of perl how can I do that
  • Comment on Re^2: Executing perl script from perl scripts

Replies are listed 'Best First'.
Re^3: Executing perl script from perl scripts
by moritz (Cardinal) on May 16, 2008 at 10:28 UTC
    system qw(perl5.8.8 1.pl); system qw(perl5.10.0 2.pl);
Re^3: Executing perl script from perl scripts
by syphilis (Archbishop) on May 16, 2008 at 10:32 UTC
    /first_perl_location/bin/perl 1.pl /second_perl_location/bin/perl 2.pl
    Cheers,
    Rob