This is the mail archive of the
cygwin@sourceware.cygnus.com
mailing list for the Cygwin project.
Re: Finding Out My Own IP-Address
- To: gnu-win32 at cygnus dot com
- Subject: Re: Finding Out My Own IP-Address
- From: "TANGUAY, LUC" <luc dot tanguay at Bell dot ca>
- Date: Thu, 07 May 1998 09:28:26 -0400
- Organization: Bell Canada
- References: <199805062058.NAA06618@cygnus.com>
I have a bash script to do it (it's called getIPaddress :-)
#!/bin/bash
# Get the IP address of the first LAN adapter.
/winnt/system32/ipconfig | grep "IP Address" | head -1 | sed 's/^.*: //'
Example of its use:
--- start of example ---
#!/bin/bash
export DISPLAY=$($HOME/bin/getIPaddress):0.0
# If network not started, address will be nul. So correct it.
if [ "$DISPLAY" = "0.0.0.0:0.0" ]
then
export DISPLAY=localhost:0.0
fi
--- end of example ---
Hope this help, Luc.
--
Luc Tanguay, ing.
Bell Canada
Recherche et génie logiciel/Software Engineering & Research
1050 Beaver Hall, 2e étage/2nd floor
Montréal (Québec) H2Z 1S4, Canada
Tél./phone: (514) 786-6440
mailto:Luc.Tanguay@bell.ca
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".