| www.delorie.com/archives/browse.cgi | search |
| X-Spam-Check-By: | sourceware.org |
| From: | "Dave Korn" <dave DOT korn AT artimi DOT com> |
| To: | <cygwin AT cygwin DOT com> |
| Subject: | RE: how t o read env variable in cygwin |
| Date: | Mon, 27 Mar 2006 15:24:59 +0100 |
| Message-ID: | <047d01c651aa$3aefebd0$a501a8c0@CAM.ARTIMI.COM> |
| MIME-Version: | 1.0 |
| In-Reply-To: | <4427F27C.5070404@byu.net> |
| Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
| List-Unsubscribe: | <mailto:cygwin-unsubscribe-archive-cygwin=delorie DOT com AT cygwin DOT com> |
| List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
| List-Archive: | <http://sourceware.org/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT cygwin DOT com> |
| List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
| Sender: | cygwin-owner AT cygwin DOT com |
| Mail-Followup-To: | cygwin AT cygwin DOT com |
| Delivered-To: | mailing list cygwin AT cygwin DOT com |
On 27 March 2006 15:11, Eric Blake wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> According to cyg_win_user on 3/27/2006 3:12 AM:
>> i m trying to read environment variable in perl using
>>
>> $OSTY = $ENV{OSTYPE};
>> this will return os type as "linux" or "solaris". but when i try for cygwin
>> it returns empty string. is the some other syntax of way of finding value
>> of env variable in cygwin
>
> What shell are you using? OSTYPE is auto-set to "cygwin" by bash, but not
> by other shells (including if you are starting perl directly from
> cmd.com). Rather than reading an environment variable that is not
> standardized and might not be set, you could always use 'uname -s' instead.
I'm no perl guru, but it really looks to me like OSTYPE isn't getting
imported to perl's %ENV because it's only a Bash shell variable, not a system
environment variable.
dk AT rainbow /artimi/software/firmware/build2> set | grep OSTYPE
OSTYPE=cygwin
dk AT rainbow /artimi/software/firmware/build2> env | grep OSTYPE
dk AT rainbow /artimi/software/firmware/build2> perl -e 'foreach $key (sort
keys(%ENV)) { print "$key = $ENV{$key}\n" ; } ' | grep OSTYPE
dk AT rainbow /artimi/software/firmware/build2>
I also find this is the case on RH8, so I don't know why the OP reckons it
works on Linux; could be some local modification to his startup profile or
anything really. Exporting it does the trick, as you might expect:
dk AT rainbow /artimi/software/firmware/build2> export OSTYPE
dk AT rainbow /artimi/software/firmware/build2> env | grep OSTYPE
OSTYPE=cygwin
dk AT rainbow /artimi/software/firmware/build2> perl -e 'foreach $key (sort
keys(%ENV)) { print "$key = $ENV{$key}\n" ; } ' | grep OSTYPE
OSTYPE = cygwin
dk AT rainbow /artimi/software/firmware/build2>
cheers,
DaveK
--
Can't think of a witty .sigline today....
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |