From: Stas Bekman Date: Thu, 29 Nov 2001 13:17:57 +0000 (+0800) Subject: [patch pod/perlapio.pod] csh temp env setting X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ada498b9a3ecd8456b83e34050cf5c47e07d666e;p=p5sagit%2Fp5-mst-13.2.git [patch pod/perlapio.pod] csh temp env setting Message-ID: (with tweaks) p4raw-id: //depot/perl@13357 --- diff --git a/pod/perlapio.pod b/pod/perlapio.pod index d378e6e..5103504 100644 --- a/pod/perlapio.pod +++ b/pod/perlapio.pod @@ -472,13 +472,16 @@ problem. PerlIO_debug writes to the file named by $ENV{'PERLIO_DEBUG'} typical use might be - Bourne shells: + Bourne shells (sh, ksh, bash, zsh, ash, ...): PERLIO_DEBUG=/dev/tty ./perl somescript some args - Csh: + Csh/Tcsh: setenv PERLIO_DEBUG /dev/tty ./perl somescript some args + If you have the "env" utility: + env PERLIO_DEBUG=/dev/tty ./perl somescript some args + Win32: set PERLIO_DEBUG=CON perl somescript some args