nushell/docs/commands/from-json.md
Waldir Pimenta 5ca9e12b7f
Fix whitespace and typos (#1481)
* Remove EOL whitespace in files other than docs

* Break paragraphs into lines

See http://rhodesmill.org/brandon/2012/one-sentence-per-line/ for the rationale

* Fix various typos

* Remove EOL whitespace in docs/commands/*.md
2020-03-14 06:23:41 +13:00

737 B

from-json

Parse text as .json and create table. Use this when nushell cannot dertermine the input file extension.

Syntax: from-json {flags}

Flags:

--objects
  treat each line as a separate value

Examples

> open command_from-json
[
    {
        title: "from-json",
        type: "command",
        flags: true
    }
]
> open command_from-json | from-json
━━━━━━━━━━━┯━━━━━━━━━┯━━━━━━━
 title     │ type    │ flags
───────────┼─────────┼───────
 from-json │ command │ Yes
━━━━━━━━━━━┷━━━━━━━━━┷━━━━━━━