mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 16:33:37 +01:00
6826a9aeac
* doc: add from-url command page * doc: add missing link to existing from-xml page. * doc: add from-ini command page
36 lines
1.9 KiB
Markdown
36 lines
1.9 KiB
Markdown
# to url
|
|
|
|
Converts table data into [url-encoded text](https://url.spec.whatwg.org/#application/x-www-form-urlencoded).
|
|
|
|
## Example
|
|
|
|
```shell
|
|
> shells
|
|
━━━┯━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━━━━━━━━
|
|
# │ │ name │ path
|
|
───┼───┼────────────┼────────────────────────
|
|
0 │ X │ filesystem │ /home/shaurya
|
|
1 │ │ filesystem │ /home/shaurya/Pictures
|
|
2 │ │ filesystem │ /home/shaurya/Desktop
|
|
━━━┷━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━━━━━━━━
|
|
> shells | to url
|
|
━━━┯━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
# │ value
|
|
───┼───────────────────────────────────────────────────────
|
|
0 │ +=X&name=filesystem&path=%2Fhome%2Fshaurya
|
|
1 │ +=+&name=filesystem&path=%2Fhome%2Fshaurya%2FPictures
|
|
2 │ +=+&name=filesystem&path=%2Fhome%2Fshaurya%2FDesktop
|
|
━━━┷━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
```
|
|
|
|
```shell
|
|
> open sample.url
|
|
━━━━━━━━━━┯━━━━━━━━┯━━━━━━┯━━━━━━━━
|
|
bread │ cheese │ meat │ fat
|
|
──────────┼────────┼──────┼────────
|
|
baguette │ comté │ ham │ butter
|
|
━━━━━━━━━━┷━━━━━━━━┷━━━━━━┷━━━━━━━━
|
|
> open sample.url | to url
|
|
bread=baguette&cheese=comt%C3%A9&meat=ham&fat=butter
|
|
```
|