Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 394 Bytes

README.rst

File metadata and controls

15 lines (10 loc) · 394 Bytes

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