Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 502 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 502 Bytes

Build Status

json2tsv

Convert json to tab-separated format. Read from STDIN and write to STDOUT. E.g.

$ echo '[{"id":"123", "user":{"name":"mary", "gender":"female"}}, {"id":"124", "user":{"name":"mark", "gender":"male"}}]' | json2tsv id user.name user.gender
123     mary	female
124	    mark	male