Unverified Commit d923cebd authored by Niccolò Maggioni's avatar Niccolò Maggioni
Browse files

Updated with @mcornella suggestions

parent 058bbe4f
...@@ -140,12 +140,12 @@ d0() { ...@@ -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}'
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment