json2tsv                                                                [12/17]

A tool that parses JSON and outputs each node per line to TSV or a
custom field and record separator.

It includes a helper script called jaq, which is a wrapper around awk:
jaq stands for JSON Awk Query (Language) :)

The output format per node is:

	nodename<TAB>type<TAB>value<NEWLINE>

For example:

	echo '[1,"two",{"nein": true, "jawohl": null}]' | json2tsv

Gives as output:

		a	
	[]	n	1
	[]	s	two
	[]	o	
	[].nein	b	true
	[].jawohl	?	null

