diff options
| author | Archie Hilton <archie.hilton1@gmail.com> | 2019-10-25 12:43:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-25 12:43:29 +0100 |
| commit | 7cecb2d92b9aa2aa981dd9b2847f3624189f93e8 (patch) | |
| tree | 73ddc9698c52f85c4665287fd352ac74fa770357 /modules/localip | |
| parent | 570963e08c2b95b2ba0ba97dfed401dd0f06a4e3 (diff) | |
| parent | fe7633cd1b14275540dfba051b67c6bcef03ecc7 (diff) | |
Merge pull request #3 from thytom/parallel
Parallel stuff + New modules
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 |
