From 7e95c3b667a1b353f8275db886203f272bfcce34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Wed, 10 Feb 2021 13:52:52 -0500 Subject: first commit --- hyperterm/tools/network.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 hyperterm/tools/network.sh (limited to 'hyperterm/tools/network.sh') diff --git a/hyperterm/tools/network.sh b/hyperterm/tools/network.sh new file mode 100644 index 0000000..0bab431 --- /dev/null +++ b/hyperterm/tools/network.sh @@ -0,0 +1,11 @@ +#!/bin/bash +# Network +function my_ip() { + 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}')}" +} -- cgit v1.2.3