http://qs1969.pair.com?node_id=187678


in reply to finiding the os type

It looks like you are trying to use your environment variables (OSTYPE, TERM) directly. In order to get to the environment variables that you want, you need to use the %ENV hash. This hash contains all of your environment variables. Just supply the environment variable name as the key to the hash to get the value.

So, your first line would look like:

if (( $ENV{OSTYPE} eq "cygwin" ) or ( $ENV{TERM} eq "cygwin" )) Enjoy.

Replies are listed 'Best First'.
Re: Re: finiding the os type
by DS (Acolyte) on Aug 05, 2002 at 14:58 UTC
    thanks much ,, that help a lot :)