diff options
author | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-10-24 20:09:35 +0100 |
---|---|---|
committer | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-10-24 20:09:35 +0100 |
commit | 549ccc0f41f20dfce4d3da52a4ff5199a2c03c08 (patch) | |
tree | b0e360d476c874eeaf680fec20bb41b13098587e /modules/publicip | |
parent | 26d3628594fd20313f19675851051c3bbbc91c44 (diff) |
Added networkup and networkdown modules
Diffstat (limited to 'modules/publicip')
-rwxr-xr-x | modules/publicip | 13 |
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 |