Mail Archives: cygwin/1998/05/07/17:53:16
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 DOT Tanguay AT bell DOT ca
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request AT cygnus DOT com" with one line of text: "help".
- Raw text -