diff options
author | Stas Bekman <stas@stason.org> | 2003-11-28 06:42:25 -0800 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-11-28 21:41:29 +0000 |
commit | 588f721066bebf3e4bee6bfb212ff0dd4bd4dfa9 (patch) | |
tree | ba51c4a012fca82a296bc5e40c527abc5a86b8f4 /pod/perlsec.pod | |
parent | fe43f860c5d2e34a3ae8a9320e2ba4f6b396ff1e (diff) | |
download | perl-588f721066bebf3e4bee6bfb212ff0dd4bd4dfa9.tar.gz |
[patch pod/perlsec.pod] (was Re: why PERL5LIB is ignored when -T is in effect)
Message-ID: <3FC7CF51.7060804@stason.org>
p4raw-id: //depot/perl@21799
Diffstat (limited to 'pod/perlsec.pod')
-rw-r--r-- | pod/perlsec.pod | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pod/perlsec.pod b/pod/perlsec.pod index 41f96691ac..89489027e1 100644 --- a/pod/perlsec.pod +++ b/pod/perlsec.pod @@ -195,6 +195,26 @@ line, so you may need to use something like C<-wU> instead of C<-w -U> under such systems. (This issue should arise only in Unix or Unix-like environments that support #! and setuid or setgid scripts.) +=head2 Taint mode and @INC + +When the taint mode (C<-T>) is in effect, the "." directory is removed +from C<@INC>, and the environment variables C<PERL5LIB> and C<PERLLIB> +are ignored by Perl. You can still adjust C<@INC> from outside the +program by using the C<-I> command line option as explained in +L<perlrun>. The two environment variables are ignored because +they are obscured, and a user running a program could be unaware that +they are set, whereas the C<-I> option is clearly visible and +therefore permitted. + +Another way to modify C<@INC> without modifying the program, is to use +the C<lib> pragma, e.g.: + + perl -Mlib=/foo program + +The benefit of using C<-Mlib=/foo> over C<-I/foo>, is that the former +will automagically remove any duplicated directories, while the later +will not. + =head2 Cleaning Up Your Path For "Insecure C<$ENV{PATH}>" messages, you need to set C<$ENV{'PATH'}> to a |