This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Finding Out My Own IP-Address


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]