perlrun typo (env PERLDB_OPTS)
authorAlexey Tourbin <at@altlinux.ru>
Sat, 19 Mar 2005 03:40:13 +0000 (06:40 +0300)
committerH.Merijn Brand <h.m.brand@xs4all.nl>
Sun, 20 Mar 2005 10:50:11 +0000 (10:50 +0000)
Message-ID: <20050319004013.GJ12596@solemn.turbinal.org>

p4raw-id: //depot/perl@24047

pod/perlrun.pod

index 88c5446..9ff9ac9 100644 (file)
@@ -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