Skip to content

Instantly share code, notes, and snippets.

@jcreamer898
Created February 7, 2017 22:06
Show Gist options
  • Select an option

  • Save jcreamer898/ec7a50b9d0d2b784997edcb9464b3212 to your computer and use it in GitHub Desktop.

Select an option

Save jcreamer898/ec7a50b9d0d2b784997edcb9464b3212 to your computer and use it in GitHub Desktop.
Giphy Search
#!/bin/bash
input=$1
query=${input// /%20}
url=http://api.giphy.com/v1/gifs/search\?q=$query\&api_key\=dc6zaTOxFJmzC
image=$(curl -s $url | jq '.data[0] | { url: .images.fixed_height.url } | .url')
echo "Added $image to the clipbboard."
echo ${image//\"/ } | pbcopy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment