ip-address 336 B

1234567891011121314
  1. #!/bin/sh
  2. #### HELP MESSAGE ##############################################
  3. hlp='Usage: ip-address
  4. Return your external IP by prompting <http://ifconfig.me/ip>.'
  5. if [ "$1" = "-h" ] || [ "$1" = "--help" ]; then
  6. echo "$hlp"
  7. exit 0
  8. fi
  9. ################################################################
  10. curl "http://ifconfig.me/ip"