RE: [Perl-unix-users] Setting env vars in hp-ux

2001-10-18 Thread Craig Sharp
Craig, That did the trick. Thanks for your assistance. Craig >>> "Arnold, Craig" <[EMAIL PROTECTED]> 10/17/01 07:07PM >>> Try: $ENV{UNIX95} = "XPG4" ; I use HP-UX also and have used this many times, although it hasn't got much to do with HP-UX. Any processes initiate

Re: [Perl-unix-users] Setting env vars in hp-ux

2001-10-18 Thread Simon Oliver
I would put this in a BEGIN block to make certain that the variables are set before any other code is executed. BEGIN { $ENV{UNIX95} = "XPG4"; } -- Simon Oliver ___ Perl-Unix-Users mailing list. To unsubscribe go to http://listserv.ActiveSt

RE: [Perl-unix-users] Setting env vars in hp-ux

2001-10-17 Thread Christopher Hahn
Craig, Look up the hash %ENV Good Luck, Christopher -Original Message- From: Craig Sharp [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 17, 2001 3:26 PM To: [EMAIL PROTECTED] Subject: [Perl-unix-users] Setting env vars in hp-ux Hi all, I wrote a script in perl for hp-ux.

RE: [Perl-unix-users] Setting env vars in hp-ux

2001-10-17 Thread Arnold, Craig
Try: $ENV{UNIX95} = "XPG4" ; I use HP-UX also and have used this many times, although it hasn't got much to do with HP-UX. Any processes initiated by the script will have it set in their environment. hth, Craig Arnold Boeing Space and Communications International Space Station Guidance, Navig