Skip to content

Instantly share code, notes, and snippets.

@loisaidasam
Last active March 5, 2019 15:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save loisaidasam/e031be8aa5af774a2086aed2d524cd49 to your computer and use it in GitHub Desktop.
Save loisaidasam/e031be8aa5af774a2086aed2d524cd49 to your computer and use it in GitHub Desktop.
Would You Rather (via rrrather.com API, using curl/jq)
#!/bin/bash
jq_str='(.title + ": " + .choicea + " OR " + .choiceb + " - " + .link + " (" + (.votes|tostring) + " votes)")'
curl -Ss "https://www.rrrather.com/botapi" | jq -r "$jq_str"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment