POD: Use F<> for F<utils/perldoc> and F<utils/perldoc.PL>
[p5sagit/p5-mst-13.2.git] / lib / importenv.pl
CommitLineData
42cb3b6d 1# This library is no longer being maintained, and is included for backward
2# compatibility with Perl 4 programs which may require it.
3# This legacy library is deprecated and will be removed in a future
4# release of perl.
5
378cc40b 6;# This file, when interpreted, pulls the environment into normal variables.
7;# Usage:
154e51a4 8;# require 'importenv.pl';
378cc40b 9;# or
10;# #include <importenv.pl>
11
12local($tmp,$key) = '';
13
8ebc5c01 14foreach $key (keys(%ENV)) {
378cc40b 15 $tmp .= "\$$key = \$ENV{'$key'};" if $key =~ /^[A-Za-z]\w*$/;
16}
17eval $tmp;
a687059c 18
191;