1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/jtbl.md

21 lines
491 B
Markdown
Raw Normal View History

2021-06-29 22:50:39 -07:00
# jtbl
> Utility to print JSON and JSON Lines data as a table in the terminal.
> More information: <https://github.com/kellyjonbrazil/jtbl>.
- Print a table from JSON or JSON Lines input:
`cat {{file.json}} | jtbl`
- Print a table and specify the column width for wrapping:
`cat {{file.json}} | jtbl --cols={{width}}`
- Print a table and truncate rows instead of wrapping:
`cat {{file.json}} | jtbl -t`
- Print a table and don't wrap or truncate rows:
`cat {{file.json}} | jtbl -n`