Skip to content

Instantly share code, notes, and snippets.

@aji
Created October 15, 2012 09:57
Show Gist options
  • Save aji/3891769 to your computer and use it in GitHub Desktop.
Save aji/3891769 to your computer and use it in GitHub Desktop.
theta ~/work/sandbox/json: cat document.json
{"foo":["bar",2],"baz":true}
theta ~/work/sandbox/json: ./json < document.json
--
{
"baz": true,
"foo": [
"bar",
2
]
}
done!
theta ~/work/sandbox/json:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment