diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-01-05 19:17:40 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-01-05 19:17:40 +0000 |
commit | ce1da67e6637b3b736abebfc7cd6991d91dbe03a (patch) | |
tree | b9840eb6620f589da6b857b3a81f032f460bfffc /pod/perlrun.pod | |
parent | 902173a3f9be2337628b9b0cc2629acc55276ccc (diff) | |
download | perl-ce1da67e6637b3b736abebfc7cd6991d91dbe03a.tar.gz |
[win32] Allow $ENV{PERL5SHELL} to contain switches etc., and document
the fact
p4raw-id: //depot/win32/perl@394
Diffstat (limited to 'pod/perlrun.pod')
-rw-r--r-- | pod/perlrun.pod | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/pod/perlrun.pod b/pod/perlrun.pod index a847133bb9..eccb5e00b7 100644 --- a/pod/perlrun.pod +++ b/pod/perlrun.pod @@ -600,13 +600,17 @@ The command used to load the debugger code. The default is: =item PERL5SHELL (specific to WIN32 port) May be set to an alternative shell that perl must use internally for -executing "backtick" commands or system(). Perl doesn't use COMSPEC -for this purpose because COMSPEC has a high degree of variability -among users, leading to portability concerns. Besides, perl can use -a shell that may not be fit for interactive use, and setting COMSPEC -to such a shell may interfere with the proper functioning of other -programs (which usually look in COMSPEC to find a shell fit for -interactive use). +executing "backtick" commands or system(). Default is C<cmd.exe /x/c> +on WindowsNT and C<command.com /c> on Windows95. The value is considered +to be space delimited. Precede any character that needs to be protected +(like a space or backslash) with a backslash. + +Note that Perl doesn't use COMSPEC for this purpose because +COMSPEC has a high degree of variability among users, leading to +portability concerns. Besides, perl can use a shell that may not be +fit for interactive use, and setting COMSPEC to such a shell may +interfere with the proper functioning of other programs (which usually +look in COMSPEC to find a shell fit for interactive use). =item PERL_DEBUG_MSTATS |