Finding Out My Own IP-Address

TANGUAY, LUC luc.tanguay@Bell.ca
Thu May 7 09:37:00 GMT 1998


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".



More information about the Cygwin mailing list