Skip to content

Instantly share code, notes, and snippets.

@bradparker
Last active November 6, 2024 12:13
Show Gist options
  • Save bradparker/4e28fc4dbd8646cb0aa9eb4cf7f058e7 to your computer and use it in GitHub Desktop.
Save bradparker/4e28fc4dbd8646cb0aa9eb4cf7f058e7 to your computer and use it in GitHub Desktop.
LibraryThing JSON export to Table
#! /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