mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
systemadmin: fix getip output with ifconfig (#7306)
This commit is contained in:
parent
ad41fe50f9
commit
ad9a8f2d43
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue