summaryrefslogtreecommitdiff
path: root/pod/perlrun.pod
diff options
context:
space:
mode:
authorAlexey Tourbin <at@altlinux.ru>2005-03-19 06:40:13 +0300
committerH.Merijn Brand <h.m.brand@xs4all.nl>2005-03-20 10:50:11 +0000
commitfdac53cdf7b8b7030448d0e63e6537e85a7a19df (patch)
tree408ade67117e69d73aa406e2affa5d59d4ed094b /pod/perlrun.pod
parent6176dd9f323ed71666b3090232f3bc20f1d8ec8b (diff)
downloadperl-fdac53cdf7b8b7030448d0e63e6537e85a7a19df.tar.gz
perlrun typo (env PERLDB_OPTS)
Message-ID: <20050319004013.GJ12596@solemn.turbinal.org> p4raw-id: //depot/perl@24047
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 88c5446d45..9ff9ac9ef5 100644
--- a/pod/perlrun.pod
+++ b/pod/perlrun.pod
@@ -413,7 +413,7 @@ as it executes, the way that C<sh -x> provides for shell scripts,
you can't use Perl's B<-D> switch. Instead do this
# If you have "env" utility
- env=PERLDB_OPTS="NonStop=1 AutoTrace=1 frame=2" perl -dS program
+ env PERLDB_OPTS="NonStop=1 AutoTrace=1 frame=2" perl -dS program
# Bourne shell syntax
$ PERLDB_OPTS="NonStop=1 AutoTrace=1 frame=2" perl -dS program