Skip to content

Instantly share code, notes, and snippets.

@mrsarm
Last active January 8, 2018 13:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrsarm/24e8531ef8375c768e03d1c1aea67262 to your computer and use it in GitHub Desktop.
Save mrsarm/24e8531ef8375c768e03d1c1aea67262 to your computer and use it in GitHub Desktop.
jl2json.sh: JSON line file to JSON file converter
#!/bin/sh
#
# jl2json.sh: JSON line file to JSON file converter
#
# Usage: ./jl2json.sh sample.jsonl sample.json
#
echo "[" > $2 ; sed '$!s/$/,/' $1 >> $2 ; echo "]" >> $2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment