Skip to content

Instantly share code, notes, and snippets.

@JaneJeon
Last active August 28, 2019 20:24
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 JaneJeon/07c79c564d0cdb82012d5c57b89eccbc to your computer and use it in GitHub Desktop.
Save JaneJeon/07c79c564d0cdb82012d5c57b89eccbc to your computer and use it in GitHub Desktop.
Export your Trello data as CSV (by parsing it from JSON)
#!/bin/bash
# I only care about the name/desc/dateLastActivity/closed fields, but you can change it however you like
cat trello.json | jq '.cards | .[] | {name,desc,dateLastActivity,closed,idList}' | json2csv > trello.csv
@JaneJeon
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment