![]() |
[ANNOUNCE]IP Script
I know that you, like me have yearned for a totally awesome way to get your current IP address in a script that doesnt totally suck balls. Here I present my script to retrieve your current IP, if you have no IP (disconnected) it will display the word disconnected.
Why is this better than the IP script in DCEW? this is better because it displays your INTERNAL IP irrespective of what interface is in use(wlan, gprs, usb) It is a total mad bro style one liner. It can be used as a DCEW, a QBW or a function in another script. If you can think of a better 1-liner to get your current IP, then post it up, I dare you. Code:
ifconfig $(route 2&>/dev/null | awk '{ field = $NF }; END{ print field }') >/dev/null && ifconfig $(route | awk '{ field = $NF }; END{ print field }') | egrep -o 'dr:[^ ]+'|sed 's/dr://g' || echo "127.0.0.1" |
Re: [ANNOUNCE]IP Script
I didn't test it on the phone, but on my computer it works well
Code:
ifconfig ${iface} | sed -ne "s/.*inet addr:\([0-9]*\.[0-9]*\.[0-9]*\.[0-9]*\).*/\1/p" NB: it works ONLY with IPv4 address. |
Re: [ANNOUNCE]IP Script
Quote:
Your script doesnt work the same way. it returns the loopback address as well as the connected address. I tried this type of approach first however ONLY wanted to receive the current IP, in 1 line with NO loopback. This allows it to work in DCEW. |
Re: [ANNOUNCE]IP Script
I'm sorry, but I don't know what "DCEW" means.
However, if you don't want the loopback device, you could "grep-it-out": Code:
ifconfig ${iface} | sed -ne "s/.*inet addr:\([0-9]*\.[0-9]*\.[0-9]*\.[0-9]*\).*/\1/p" | grep -v "127.0.0.1" Code:
ifconfig | sed -ne "s/^\([A-Za-z0-9]\+\).*/\1/p" | while read iface ; do [ ${iface} != "lo" ] && ifconfig ${iface} ; done | sed -ne "s/.*inet addr:\([0-9]*\.[0-9]*\.[0-9]*\.[0-9]*\).*/\1/p" |
Re: [ANNOUNCE]IP Script
Quote:
Ok I dare; five commands all piped: :cool: Code:
ifconfig `ifconfig|grep -o wlan0`|grep -m1 't a'|sed 's/.*r://;s/ .*//' Code:
|sed 's/127.0.0.1/Disconnected/' Code:
echo "ifconfig `echo ifconfig|root|grep -o wlan0`|grep -m1 't a'|sed 's/.*r://;s/ .*//'"|root Oh vi_, yours throws a route usage error for me if run in XTerm! And fails if not connected. :confused: Code:
Nokia-N900:~# ifconfig $(route 2&>/dev/null | awk '{ field = $NF }; END{ print field }') >/dev/null && ifconfig $(route | awk '{ field = $NF }; END{ print field }') | egrep -o 'dr:[^ ]+'|sed 's/dr://g' || echo "127.0.0.1" |
Re: [ANNOUNCE]IP Script
Quote:
|
Re: [ANNOUNCE]IP Script
Quote:
|
All times are GMT. The time now is 08:15. |
vBulletin® Version 3.8.8