diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-07-13 08:46:30 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-07-13 08:46:30 +0000 |
commit | 51370f994fa2a68d90998bb11cbc8cac0e73cad2 (patch) | |
tree | 50c4d49b5524135313ce4c7a0c8ada0677d80648 /pod/perlintro.pod | |
parent | 89d205f200256d4e0f7e2831f0249c279db86d83 (diff) | |
download | perl-51370f994fa2a68d90998bb11cbc8cac0e73cad2.tar.gz |
Not everybody has env
p4raw-id: //depot/perl@28564
Diffstat (limited to 'pod/perlintro.pod')
-rw-r--r-- | pod/perlintro.pod | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pod/perlintro.pod b/pod/perlintro.pod index 04e15686a1..201ebea891 100644 --- a/pod/perlintro.pod +++ b/pod/perlintro.pod @@ -54,6 +54,9 @@ Alternatively, put this as the first line of your script: ... and run the script as C</path/to/script.pl>. Of course, it'll need to be executable first, so C<chmod 755 script.pl> (under Unix). +(This start line assumes you have the B<env> program. You can also put +directly the path to your perl executable, like in C<#!/usr/bin/perl>). + For more information, including instructions for other platforms such as Windows and Mac OS, read L<perlrun>. |