I am a newbie to the world of Perl:-) I am confused about what takes precedent when a script is compiled.
ISSUE:
At my site we have two version of Perl loaded on an AIX box.
Perl 5.8.0 is loaded on /usr/local/bin/perl. Perl 5.005_3 is loaded on /usr/bin/perl. The first line of the Perl script contains the #!/usr/bin/perl command. However, when the script is compiled, the command line has the following:
perl5.8.0 scriptname.pl.
Which version of perl will the be used to compile the script?
Please advise.