aboutsummaryrefslogtreecommitdiff
path: root/modules/localip
diff options
context:
space:
mode:
authorArchie Hilton (thytom) <archie.hilton1@gmail.com>2019-10-24 20:37:45 +0100
committerArchie Hilton (thytom) <archie.hilton1@gmail.com>2019-10-24 20:37:45 +0100
commit2785224db7935b8b4ccab35001270b1edfedf585 (patch)
treeef357a1645cd1689aa534accdf22e66ea751b7f9 /modules/localip
parentb6c66204fd96231cea02fcf98dbb376a9e1bed07 (diff)
parent8a259103551d200fc5b5b641e36b7eada0728759 (diff)
Merge remote-tracking branch 'origin/parallel' into parallel
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