diff --git a/functions b/functions index d0a6648..d5912d6 100644 --- a/functions +++ b/functions @@ -6,13 +6,13 @@ function shownetinfo() { if [ "$OSTYPE" = "Linux" ]; then IP=$(ifconfig | grep -v "127.0.0.1" | grep "inet " | head -1 | cut -d " " -f10) - GW=$(ip route | grep default | cut -d " " -f3) + NET=$(ip route | grep default | cut -d " " -f3) elif [ "$OSTYPE" = "Darwin" ]; then NET=$(system_profiler SPNetworkDataType | grep "Router:" | cut -c 19-30 | head -1) IP=$(ifconfig | grep -v "127.0.0.1" | grep "inet " | head -1 | cut -d " " -f2) - if [ "$NET" != "" ]; then - GW=$(dig +short myip.opendns.com @resolver1.opendns.com) - fi + fi + if [ "$NET" != "" ]; then + GW=$(dig +short myip.opendns.com @resolver1.opendns.com) fi tput setaf 7; tput bold; echo -en "Net: " tput sgr0