summaryrefslogtreecommitdiff
path: root/pod/perlrun.pod
diff options
context:
space:
mode:
Diffstat (limited to 'pod/perlrun.pod')
-rw-r--r--pod/perlrun.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlrun.pod b/pod/perlrun.pod
index 01ad16783d..534146a77d 100644
--- a/pod/perlrun.pod
+++ b/pod/perlrun.pod
@@ -72,7 +72,7 @@ The sequences "-*" and "- " are specifically ignored so that you could,
if you were so inclined, say
#!/bin/sh -- # -*- perl -*- -p
- eval 'exec /usr/bin/perl $0 -S ${1+"$@"}'
+ eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
if $running_under_some_shell;
to let Perl see the B<-p> switch.