diff options
Diffstat (limited to 'modules/localip')
-rwxr-xr-x | modules/localip | 12 |
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 |