Backup repo containing my ReadingList data.
Count author occurrences:
cat done.json | jq '.[].authors[]' | sort | uniq -c | sort -nr
Get all titles by author:
cat done.json | jq '.[] | select (.authors[] == "Richard Feynman").title'
Backup repo containing my ReadingList data.
Count author occurrences:
cat done.json | jq '.[].authors[]' | sort | uniq -c | sort -nr
Get all titles by author:
cat done.json | jq '.[] | select (.authors[] == "Richard Feynman").title'