to ack. receipt
of this message yes/no'.
Yay Bill!
-mL
- Original Message -
From: "Bob Showalter" <[EMAIL PROTECTED]>
To: "'Matthew Peter Lyon'" <[EMAIL PROTECTED]>
Sent: Tuesday, January 22, 2002 7:47 AM
Subject: RE: Using system variables (M$
CTED]>
Sent: Monday, January 21, 2002 8:13 AM
Subject: RE: Using system variables (M$ OS's)
> Fantastic!
>
> Thankyou.
>
> From: Briac Pilpré [mailto:[EMAIL PROTECTED]]
> Sent: 21 January 2002 16:05
> To: [EMAIL PROTECTED]
> Subject: Re: Using system variables (M$ OS
Fantastic!
Thankyou.
From: Briac Pilpré [mailto:[EMAIL PROTECTED]]
Sent: 21 January 2002 16:05
To: [EMAIL PROTECTED]
Subject: Re: Using system variables (M$ OS's)
Andrew Mason wrote:
> I would like to print a line containing the value of a system variable
> (I'm running on M$
On Jan 21, Mason, Andrew said:
>My system variable is %IPADDRESS%.
You can access that via $ENV{IPADDRESS} in your Perl program.
--
Jeff "japhy" Pinyan [EMAIL PROTECTED] http://www.pobox.com/~japhy/
RPI Acacia brother #734 http://www.perlmonks.org/ http://www.cpan.org/
** Look fo
Andrew Mason wrote:
> I would like to print a line containing the value of a system variable
> (I'm running on M$ NT4).
#!/usr/bin/perl -w
use strict;
print "Blah blah $ENV{IPADDRESS} blah!\n";
__END__
--
briac
<< dynamic .sig on strike, we apologize for the inconvenience >>
--
To unsubsc
I would like to print a line containing the value of a system variable
(I'm running on M$ NT4).
My system variable is %IPADDRESS%.
At the moment my code looks like
chomp ($IpAddress=`echo %IPADDRESS%`);
print "blah blah $IpAddress blah";
Is there a better/preferable way of doing this?
Cheers,