Thanks Brian and Marcus.
$^O is exactly what I needed.
_brian_d_foy <[EMAIL PROTECTED]>
10/19/2001 08:44 AM
To: [EMAIL PROTECTED]
cc:
Subject: Re: accessing environment variables
In article <[EMAIL PROTECTED]>,
[EMAIL PROTECTED] (Greg F
In article <[EMAIL PROTECTED]>,
[EMAIL PROTECTED] (Greg Froese) wrote:
> I want to be able to test whether I'm in Windows or Linux, and this seems
> like a good way to do it.
you want $^O, not an environment variable. take a look inside
CGI.pm for some example code. :)
--
brian d foy <[EMAI
| If there is an easier/better way, I'm all ears.
Use the variable $^O which contains the name of the operating
system. It's "MSWin32" for Windows, for example.
if( $^O eq 'MSWin32' ) {
# ...
}
else {
# ...
}
Hope this helps.
-- Marcus
| -Original Message-
| From: [EM