Skip to content

Instantly share code, notes, and snippets.

@rymawby
Last active November 22, 2019 03:48
Show Gist options
  • Save rymawby/5072615fec1de00c2dae28ea6bb0f6bd to your computer and use it in GitHub Desktop.
Save rymawby/5072615fec1de00c2dae28ea6bb0f6bd to your computer and use it in GitHub Desktop.
Giphy bash function
function giphy() { curl --silent "https://api.giphy.com/v1/gifs/search?api_key={API_KEY}&limit=1&offset=0&rating=&lang=en&q=$1" | node -p "JSON.parse(require('fs').readFileSync('/dev/stdin')).data[0].images.downsized_large.url" | pbcopy | open -a Slack}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment