aboutsummaryrefslogtreecommitdiff
path: root/modules/publicip
diff options
context:
space:
mode:
authorManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-10-24 20:09:35 +0100
committerManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-10-24 20:09:35 +0100
commit549ccc0f41f20dfce4d3da52a4ff5199a2c03c08 (patch)
treeb0e360d476c874eeaf680fec20bb41b13098587e /modules/publicip
parent26d3628594fd20313f19675851051c3bbbc91c44 (diff)
Added networkup and networkdown modules
Diffstat (limited to 'modules/publicip')
-rwxr-xr-xmodules/publicip13
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/publicip b/modules/publicip
new file mode 100755
index 0000000..2e94e04
--- /dev/null
+++ b/modules/publicip
@@ -0,0 +1,13 @@
+#!/bin/bash
+
+# Prints out your public IP adress
+# Depends on curl
+
+PREFIX=' '
+
+get_pub_ip()
+{
+ echo "$PREFIX$(curl -s ifconfig.co)"
+}
+
+get_pub_ip