diff options
Diffstat (limited to 'hyperterm/tools')
-rw-r--r-- | hyperterm/tools/network.sh | 5 | ||||
-rw-r--r-- | hyperterm/tools/sysinfo.sh | 3 |
2 files changed, 2 insertions, 6 deletions
diff --git a/hyperterm/tools/network.sh b/hyperterm/tools/network.sh index 0bab431..1a21a57 100644 --- a/hyperterm/tools/network.sh +++ b/hyperterm/tools/network.sh @@ -1,11 +1,8 @@ #!/bin/bash -# Network -function my_ip() { +function __network() { unset MY_IP : "${MY_IP:=$(ip route show table local | awk -F "local" '{print $2}' | uniq)}" -} -function my_isp() { unset MY_ISP : "${MY_ISP:=$(host myip.opendns.com resolver1.opendns.com | grep "myip.opendns.com has" | awk '{print $4}')}" } diff --git a/hyperterm/tools/sysinfo.sh b/hyperterm/tools/sysinfo.sh index 0654e7a..e2db9ec 100644 --- a/hyperterm/tools/sysinfo.sh +++ b/hyperterm/tools/sysinfo.sh @@ -2,6 +2,7 @@ # System information function ii() { + __network "$1" > /dev/null 2>&1 # import network case ${LANG/_*/} in es) printf '%s\e[1;36m%s\e[m\n' "Has iniciado sesión en " "$(hostname -f)" @@ -12,7 +13,6 @@ function ii() { printf '\n\e[1;32m%s\e[m\n%s\n' "Estadísticas de la memoria:" "$(free)" printf '\n\e[1;32m%s\e[m\n' "Dirección IP Local:" printf '%s\n' "${MY_IP:-"No conectado"}" - my_isp "$1" &> /dev/null printf '\n\e[1;32m%s\e[m\n' "Dirección ISP:" printf '%s\n' "${MY_ISP:-"No conectado"}" ;; @@ -25,7 +25,6 @@ function ii() { printf '\n\e[1;32m%s\e[m\n%s\n' "Memory stats:" "$(free)" printf '\n\e[1;32m%s\e[m\n' "Local IP Address:" printf '%s\n' "${MY_IP:-"Not connected"}" - my_isp "$1" &> /dev/null printf '\n\e[1;32m%s\e[m\n' "ISP Address:" printf '%s\n' "${MY_ISP:-"Not connected"}" ;; |