Skip to content

Instantly share code, notes, and snippets.

@tkrkt
Last active March 14, 2016 05:21
Show Gist options
  • Save tkrkt/5cb5d77be28596acb14d to your computer and use it in GitHub Desktop.
Save tkrkt/5cb5d77be28596acb14d to your computer and use it in GitHub Desktop.
#!/bin/sh
json=`curl -s "https://api.trello.com/1/lists/[list-id]]/cards?key=[key]&token=[token]"`
echo ${json} | /usr/local/bin/jq -r '"ToDo: " + .[0].name'
echo '---'
echo ${json} | /usr/local/bin/jq -r '.[].name'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment