diff options
author | Brian Fraser <fraserbn@gmail.com> | 2012-06-27 08:45:13 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-06-27 08:46:35 -0700 |
commit | 6898e867247a1170dd5174586025e87d5027526e (patch) | |
tree | 62e032e15f62ead3984c0b7cb55a983f713ced2f /pod/perlrun.pod | |
parent | 13e5d9cdc0275b57d080d6599d0913b19bf5572e (diff) | |
download | perl-6898e867247a1170dd5174586025e87d5027526e.tar.gz |
perlrun: #109408
Diffstat (limited to 'pod/perlrun.pod')
-rw-r--r-- | pod/perlrun.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlrun.pod b/pod/perlrun.pod index 2897b5dd7c..9421a3b281 100644 --- a/pod/perlrun.pod +++ b/pod/perlrun.pod @@ -90,7 +90,7 @@ A similar trick involves the I<env> program, if you have it. The examples above use a relative path to the perl interpreter, getting whatever version is first in the user's path. If you want -a specific version of Perl, say, perl5.005_57, you should place +a specific version of Perl, say, perl5.14.1, you should place that directly in the C<#!> line's path. If the C<#!> line does not contain the word "perl" nor the word "indir" @@ -205,12 +205,12 @@ In this documentation, C<#!/usr/bin/perl> on the first line of the program will stand in for whatever method works on your system. You are advised to use a specific path if you care about a specific version. - #!/usr/local/bin/perl5.00554 + #!/usr/local/bin/perl5.14 or if you just want to be running at least version, place a statement like this at the top of your program: - use 5.005_54; + use 5.014; =head2 Command Switches X<perl, command switches> X<command switches> |