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

systemadmin: fix getip output with ifconfig (#7306)

This commit is contained in:
Patrick Artounian 2018-10-25 04:26:22 -07:00 committed by Marc Cornellà
parent ad41fe50f9
commit ad9a8f2d43

View file

@ -134,12 +134,12 @@ geteip() {
curl -s -S https://icanhazip.com
}
# determine local IP address
# determine local IP address(es)
getip() {
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
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
}