![]() |
2011-05-31
, 21:46
|
Posts: 114 |
Thanked: 45 times |
Joined on Oct 2009
@ Turin, Italy
|
#2
|
ifconfig ${iface} | sed -ne "s/.*inet addr:\([0-9]*\.[0-9]*\.[0-9]*\.[0-9]*\).*/\1/p"
The Following User Says Thank You to HoX For This Useful Post: | ||
![]() |
2011-05-31
, 22:07
|
Posts: 1,680 |
Thanked: 3,685 times |
Joined on Jan 2011
|
#3
|
I didn't test it on the phone, but on my computer it works well
If you want to get the address of a specific interface, you should simply define the ${iface} variable.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.
![]() |
2011-05-31
, 22:21
|
Posts: 114 |
Thanked: 45 times |
Joined on Oct 2009
@ Turin, Italy
|
#4
|
ifconfig ${iface} | sed -ne "s/.*inet addr:\([0-9]*\.[0-9]*\.[0-9]*\.[0-9]*\).*/\1/p" | grep -v "127.0.0.1"
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"
![]() |
2011-06-01
, 09:25
|
|
Posts: 623 |
Thanked: 289 times |
Joined on Jan 2010
@ UK
|
#5
|
If you can think of a better 1-liner to get your current IP, then post it up, I dare you.
ifconfig `ifconfig|grep -o wlan0`|grep -m1 't a'|sed 's/.*r://;s/ .*//'
|sed 's/127.0.0.1/Disconnected/'
echo "ifconfig `echo ifconfig|root|grep -o wlan0`|grep -m1 't a'|sed 's/.*r://;s/ .*//'"|root
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" BusyBox v1.10.2 (Debian 3:1.10.2.legal-1osso30+0m5) multi-call binary Usage: route [{add|del|delete}] ifconfig: Iface: error fetching interface information: Device not found
![]() |
2011-06-01
, 09:38
|
|
Posts: 623 |
Thanked: 289 times |
Joined on Jan 2010
@ UK
|
#7
|
![]() |
Tags |
hox rulez, one liner, whos your daddy |
Thread Tools | |
|
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.