systemadmin: fix getip output with ifconfig (#7306)

master
Patrick Artounian 8 years ago committed by Marc Cornellà
parent ad41fe50f9
commit ad9a8f2d43
  1. 6
      plugins/systemadmin/systemadmin.plugin.zsh

@ -134,12 +134,12 @@ geteip() {
curl -s -S https://icanhazip.com curl -s -S https://icanhazip.com
} }
# determine local IP address # determine local IP address(es)
getip() { getip() {
if (( ${+commands[ip]} )); then if (( ${+commands[ip]} )); then
ip addr | grep "inet " | grep -v '127.0.0.1' | awk '{print $2}' ip addr | awk '/inet /{print $2}' | command grep -v 127.0.0.1
else else
ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $1}' ifconfig | awk '/inet /{print $2}' | command grep -v 127.0.0.1
fi fi
} }

Loading…
Cancel
Save