mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
Updated with @mcornella suggestions
This commit is contained in:
parent
058bbe4f02
commit
d923cebdb3
1 changed files with 2 additions and 2 deletions
|
@ -140,12 +140,12 @@ d0() {
|
||||||
|
|
||||||
# gather external ip address
|
# gather external ip address
|
||||||
geteip() {
|
geteip() {
|
||||||
echo "$(curl -s -S http://ipecho.net/plain)"
|
curl -s -S https://icanhazip.com
|
||||||
}
|
}
|
||||||
|
|
||||||
# determine local IP address
|
# determine local IP address
|
||||||
getip() {
|
getip() {
|
||||||
if [ $(hash | grep '^ip=') ]; then
|
if (( ${+commands[ip]} )); then
|
||||||
ip addr | grep "inet " | grep -v '127.0.0.1' | awk '{print $2}'
|
ip addr | grep "inet " | grep -v '127.0.0.1' | awk '{print $2}'
|
||||||
else
|
else
|
||||||
ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $1}'
|
ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $1}'
|
||||||
|
|
Loading…
Reference in a new issue