Last active
April 1, 2016 01:31
-
-
Save adrienjoly/b81d154f556a6d9fc7d0 to your computer and use it in GitHub Desktop.
based on jq command-line json processor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FILENAME=wunderlist-20140714-20-07-39.json | |
LIST_ID=AB1XAAVtNbA | |
cat $FILENAME | jq -r ".tasks[] | select(.list_id == \"$LIST_ID\") | select(has(\"completed_at\") == false) | .title" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment