Skip to content

Instantly share code, notes, and snippets.

@chappjc
Created February 24, 2017 00:29
Show Gist options
  • Select an option

  • Save chappjc/f2c430cec71047cf72ac7af3149c5109 to your computer and use it in GitHub Desktop.

Select an option

Save chappjc/f2c430cec71047cf72ac7af3149c5109 to your computer and use it in GitHub Desktop.
convert JSON array to CSV
#!/bin/bash
in=`tee`
# echo $in
echo $in | jq -r '(.[0] | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' > $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment