>I have to source a KORN-Shell Script, so that the environment-Variables
>created by
>KORN-Shell is available in my PERL-Script. Ho do I that ????


The hash %ENV stores the environment variables.

if ( $ENV{HOME} =~ /dave/ )
{
     print "Good morning Dave.";
}

http://www.perldoc.com/perl5.6/pod/perlvar.html

-----------------------------------------
Craig Moynes
Internship Student
netCC Development
IBM Global Services, Canada
Tel: (905) 316-3486
[EMAIL PROTECTED]


Reply via email to