mirror of
https://github.com/nushell/nushell.git
synced 2025-08-17 13:41:11 +02:00
doc: add more from command pages (#1778)
* doc: add from-url command page * doc: add missing link to existing from-xml page. * doc: add from-ini command page
This commit is contained in:
14
docs/commands/from-url.md
Normal file
14
docs/commands/from-url.md
Normal file
@ -0,0 +1,14 @@
|
||||
# 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
|
||||
━━━━━━━━━━┷━━━━━━━━┷━━━━━━┷━━━━━━━━
|
||||
```
|
Reference in New Issue
Block a user