Skip to content

Instantly share code, notes, and snippets.

@mauricerenck
Last active December 15, 2015 17:59
Show Gist options
  • Save mauricerenck/5300752 to your computer and use it in GitHub Desktop.
Save mauricerenck/5300752 to your computer and use it in GitHub Desktop.
[sh] short URLs Google
curl https://www.googleapis.com/urlshortener/v1/url -H 'Content-Type: application/json' -d "{\"longUrl\": \"BASEURL/$1\"}" | awk -F=":" -v RS="," '$1~/"id"/ {print}' | sed -e 's/"id": "//g' | sed -e 's/"//g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment