aboutsummaryrefslogtreecommitdiff
path: root/modules/localip
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/localip
parent26d3628594fd20313f19675851051c3bbbc91c44 (diff)
Added networkup and networkdown modules
Diffstat (limited to 'modules/localip')
-rwxr-xr-xmodules/localip12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/localip b/modules/localip
new file mode 100755
index 0000000..39629db
--- /dev/null
+++ b/modules/localip
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+# Prints out your local IP
+
+PREFIX='ﯱ '
+
+get_local_ip()
+{
+ echo "$PREFIX$(hostname -i)"
+}
+
+get_local_ip