mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
34 lines
715 B
Plaintext
34 lines
715 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# json5
|
|
|
|
> Convert JSON5 files to JSON.
|
|
> More information: <https://json5.org/#cli>.
|
|
|
|
- Convert JSON5 `stdin` to JSON `stdout`:
|
|
|
|
`echo {{input}} | json5`
|
|
|
|
- Convert a JSON5 file to JSON and output to `stdout`:
|
|
|
|
`json5 {{path/to/input_file.json5}}`
|
|
|
|
- Convert a JSON5 file to the specified JSON file:
|
|
|
|
`json5 {{path/to/input_file.json5}} {{[-o|--out-file]}} {{path/to/output_file.json}}`
|
|
|
|
- Validate a JSON5 file:
|
|
|
|
`json5 {{path/to/input_file.json5}} {{[-v|--validate]}}`
|
|
|
|
- Specify the number of spaces to indent by (or "t" for tabs):
|
|
|
|
`json5 {{[-s|--space]}} {{indent_amount}}`
|
|
|
|
- Display help:
|
|
|
|
`json5 {{[-h|--help]}}`
|