1 ;# $RCSfile: importenv.pl,v $$Revision: 4.1 $$Date: 92/08/07 18:24:02 $
3 ;# This file, when interpreted, pulls the environment into normal variables.
5 ;# require 'importenv.pl';
7 ;# #include <importenv.pl>
11 foreach $key (keys(%ENV)) {
12 $tmp .= "\$$key = \$ENV{'$key'};" if $key =~ /^[A-Za-z]\w*$/;