diff options
author | Alexey Tourbin <at@altlinux.ru> | 2005-03-19 06:40:13 +0300 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-03-20 10:50:11 +0000 |
commit | fdac53cdf7b8b7030448d0e63e6537e85a7a19df (patch) | |
tree | 408ade67117e69d73aa406e2affa5d59d4ed094b /pod/perlrun.pod | |
parent | 6176dd9f323ed71666b3090232f3bc20f1d8ec8b (diff) | |
download | perl-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.pod | 2 |
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 |