Skip to content

Instantly share code, notes, and snippets.

@lordlinus
Last active November 28, 2019 18:20
Show Gist options
  • Save lordlinus/d98ec1f641cd5374fe35ba91cdd35359 to your computer and use it in GitHub Desktop.
Save lordlinus/d98ec1f641cd5374fe35ba91cdd35359 to your computer and use it in GitHub Desktop.
# converting csv into json and fix the value with spaces
jq split("\n") | .[] | split(",") | {k:.[0], v:[.[1] | split(" ") | .[]]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment