summaryrefslogtreecommitdiff
path: root/pod/perlapio.pod
diff options
context:
space:
mode:
authorStas Bekman <stas@stason.org>2001-11-29 21:17:57 +0800
committerJarkko Hietaniemi <jhi@iki.fi>2001-11-29 13:42:18 +0000
commitada498b9a3ecd8456b83e34050cf5c47e07d666e (patch)
treecdb3c7457bd29d3854ef96dd2b5bb630531673b4 /pod/perlapio.pod
parent8b4c0206050ea137d8e8f896aabe9e7179812197 (diff)
downloadperl-ada498b9a3ecd8456b83e34050cf5c47e07d666e.tar.gz
[patch pod/perlapio.pod] csh temp env setting
Message-ID: <Pine.LNX.4.40.0111291314570.17584-100000@hope.stason.org> (with tweaks) p4raw-id: //depot/perl@13357
Diffstat (limited to 'pod/perlapio.pod')
-rw-r--r--pod/perlapio.pod7
1 files changed, 5 insertions, 2 deletions
diff --git a/pod/perlapio.pod b/pod/perlapio.pod
index d378e6e12e..5103504565 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