Last active
November 6, 2024 12:13
-
-
Save bradparker/4e28fc4dbd8646cb0aa9eb4cf7f058e7 to your computer and use it in GitHub Desktop.
LibraryThing JSON export to Table
This file contains 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
#! /usr/bin/env nix-shell | |
#! nix-shell -i bash -p jq dasel | |
jq \ | |
'[.[] | { code: .ddc.code[0], author: .primaryauthor, title: .title }] | sort_by(.code)' \ | |
< $1 | dasel -r json -w csv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment