From: Alexey Tourbin Date: Sat, 19 Mar 2005 03:40:13 +0000 (+0300) Subject: perlrun typo (env PERLDB_OPTS) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fdac53cdf7b8b7030448d0e63e6537e85a7a19df;p=p5sagit%2Fp5-mst-13.2.git perlrun typo (env PERLDB_OPTS) Message-ID: <20050319004013.GJ12596@solemn.turbinal.org> p4raw-id: //depot/perl@24047 --- diff --git a/pod/perlrun.pod b/pod/perlrun.pod index 88c5446..9ff9ac9 100644 --- a/pod/perlrun.pod +++ b/pod/perlrun.pod @@ -413,7 +413,7 @@ as it executes, the way that C 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