Skip to content

Instantly share code, notes, and snippets.

@jostyee
Last active March 21, 2018 16:41
Show Gist options
  • Save jostyee/b7826c495060462049230f41283252ca to your computer and use it in GitHub Desktop.
Save jostyee/b7826c495060462049230f41283252ca to your computer and use it in GitHub Desktop.
URL shortening via goo.gl
#!/bin/sh
# Create credential at https://console.developers.google.com/apis/credentials
echo -n $( curl "https://www.googleapis.com/urlshortener/v1/url?fields=id&key=$KEY" -H 'Content-Type: application/json' -d '{"longUrl": "$URL"}' -s | awk '/"id":/ {print substr($2, 2, length($2)-2)}' )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment