Skip to content

Instantly share code, notes, and snippets.

@emillon
Created December 8, 2015 09:59
Show Gist options
  • Save emillon/6e05f57a1e9bd8f656b1 to your computer and use it in GitHub Desktop.
Save emillon/6e05f57a1e9bd8f656b1 to your computer and use it in GitHub Desktop.
bitoduc.fr CLI client
#!/bin/sh
url=bitoduc.fr/traductions.json
jq='[.["vrais mots"] + .["faux mots"] | .[] | {(.anglais): .francais}]|add|.[$mot]'
curl -s "$url" | jq "$jq" -r --arg mot "$1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment