forked from extern/nushell
6826a9aeac
* doc: add from-url command page * doc: add missing link to existing from-xml page. * doc: add from-ini command page
15 lines
612 B
Markdown
15 lines
612 B
Markdown
# from url
|
|
|
|
Parse [url-encoded string](https://url.spec.whatwg.org/#application/x-www-form-urlencoded) as a table.
|
|
|
|
## Example
|
|
|
|
```shell
|
|
> echo 'bread=baguette&cheese=comt%C3%A9&meat=ham&fat=butter' | from url
|
|
━━━━━━━━━━┯━━━━━━━━┯━━━━━━┯━━━━━━━━
|
|
bread │ cheese │ meat │ fat
|
|
──────────┼────────┼──────┼────────
|
|
baguette │ comté │ ham │ butter
|
|
━━━━━━━━━━┷━━━━━━━━┷━━━━━━┷━━━━━━━━
|
|
```
|