Skip to content

Instantly share code, notes, and snippets.

@rilian
Created July 2, 2021 15:38
Show Gist options
  • Save rilian/7ad3a27a36c9181ee363484503907b40 to your computer and use it in GitHub Desktop.
Save rilian/7ad3a27a36c9181ee363484503907b40 to your computer and use it in GitHub Desktop.
convert JSON to CSV in folder
#!/bin/bash
for filename in *.json; do
cat "$filename" | jq -r '(map(keys) | add | unique) as $cols | map(. as $row | $cols | map($row[.])) as $rows | $cols, $rows[] | @csv' > "$filename.csv"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment