Skip to content

Instantly share code, notes, and snippets.

@FrancisTurner
Created December 6, 2021 07:29
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 FrancisTurner/633be7a572893f54e6d2626c47df3a3f to your computer and use it in GitHub Desktop.
Save FrancisTurner/633be7a572893f54e6d2626c47df3a3f to your computer and use it in GitHub Desktop.
txt2json sed oneliner
sed -e 's/^/"/' -e 's/$/",/' -e '1 s/^/[/' -e '$ s/,$/]/' file.txt > file.json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment