mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 17:03:45 +01:00
33 lines
734 B
Markdown
33 lines
734 B
Markdown
# from json
|
|
|
|
Parse text as `.json` and create table. Use this when nushell cannot determine the input file extension.
|
|
|
|
Syntax: `from json {flags}`
|
|
|
|
## Flags
|
|
|
|
--objects
|
|
treat each line as a separate value
|
|
|
|
## Examples
|
|
|
|
```shell
|
|
> open command_from-json
|
|
[
|
|
{
|
|
title: "from json",
|
|
type: "command",
|
|
flags: true
|
|
}
|
|
]
|
|
```
|
|
|
|
```shell
|
|
> open command_from-json | from json
|
|
━━━━━━━━━━━┯━━━━━━━━━┯━━━━━━━
|
|
title │ type │ flags
|
|
───────────┼─────────┼───────
|
|
from json │ command │ Yes
|
|
━━━━━━━━━━━┷━━━━━━━━━┷━━━━━━━
|
|
```
|