Skip to content

Instantly share code, notes, and snippets.

@morganestes
Last active July 28, 2016 21:09
Show Gist options
  • Select an option

  • Save morganestes/988e8d671dcde8de320f391b7ff85e71 to your computer and use it in GitHub Desktop.

Select an option

Save morganestes/988e8d671dcde8de320f391b7ff85e71 to your computer and use it in GitHub Desktop.
Geolocation for an IP or URL.
#!/bin/sh
geoip(){
ip=$1 || curl https://icanhazip.com
curl "https://freegeoip.net/json/${ip}"
}
geoip "$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment