Hallo
ifconfig | grep -A 1
route | grep default | awk '{print $8}'| tail -n 1 | awk '{print $2}' | cut -d ':' -f 2
ifconfig eth0 | awk /eth0/'{next}//{split($0,a,":");split(a[2],a," ");print a[1];exit}'
ifconfig eth0 | grep 'inet ' | cut -d ':' -f 2 | cut -d ' ' -f 1
ifdata -pa ppp0
Damit gäbe es dann schon vier Möglichkeiten. (Christophs Antwort hat mir irgendwie nicht weitergeholfen.)
Tja, mit ip scheint es auch nicht einfacher zu sein als mit ifconfig ...
ip -4 -o addr show eth0 | cut -d ' ' -f 7 | cut -d '/' -f 1
Freundliche Grüße
Vinzenz