0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

General compatibility

This commit is contained in:
Niccolò Maggioni 2015-08-26 10:54:08 +02:00
parent a127c4f88e
commit 058bbe4f02
No known key found for this signature in database
GPG key ID: 4874B0C841E33264

View file

@ -145,7 +145,7 @@ geteip() {
# determine local IP address
getip() {
if [ "$(which ip)" != "" ]; then
if [ $(hash | grep '^ip=') ]; then
ip addr | grep "inet " | grep -v '127.0.0.1' | awk '{print $2}'
else
ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $1}'