2020-05-05 10:05:23 +02:00
|
|
|
# to url
|
2019-10-03 15:37:48 +02:00
|
|
|
|
2020-05-13 19:23:33 +02:00
|
|
|
Converts table data into [url-encoded text](https://url.spec.whatwg.org/#application/x-www-form-urlencoded).
|
2019-10-03 15:37:48 +02:00
|
|
|
|
|
|
|
## Example
|
|
|
|
|
|
|
|
```shell
|
|
|
|
> shells
|
|
|
|
━━━┯━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━━━━━━━━
|
2020-03-13 18:23:41 +01:00
|
|
|
# │ │ name │ path
|
2019-10-03 15:37:48 +02:00
|
|
|
───┼───┼────────────┼────────────────────────
|
2020-03-13 18:23:41 +01:00
|
|
|
0 │ X │ filesystem │ /home/shaurya
|
|
|
|
1 │ │ filesystem │ /home/shaurya/Pictures
|
|
|
|
2 │ │ filesystem │ /home/shaurya/Desktop
|
2019-10-03 15:37:48 +02:00
|
|
|
━━━┷━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━━━━━━━━
|
2020-05-05 10:05:23 +02:00
|
|
|
> shells | to url
|
2019-10-03 15:37:48 +02:00
|
|
|
━━━┯━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
2020-03-13 18:23:41 +01:00
|
|
|
# │ value
|
2019-10-03 15:37:48 +02:00
|
|
|
───┼───────────────────────────────────────────────────────
|
2020-03-13 18:23:41 +01:00
|
|
|
0 │ +=X&name=filesystem&path=%2Fhome%2Fshaurya
|
|
|
|
1 │ +=+&name=filesystem&path=%2Fhome%2Fshaurya%2FPictures
|
|
|
|
2 │ +=+&name=filesystem&path=%2Fhome%2Fshaurya%2FDesktop
|
2019-10-03 15:37:48 +02:00
|
|
|
━━━┷━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
|
|
```
|
2019-10-04 03:10:16 +02:00
|
|
|
|
|
|
|
```shell
|
2020-03-13 18:23:41 +01:00
|
|
|
> open sample.url
|
2019-10-04 03:10:16 +02:00
|
|
|
━━━━━━━━━━┯━━━━━━━━┯━━━━━━┯━━━━━━━━
|
2020-03-13 18:23:41 +01:00
|
|
|
bread │ cheese │ meat │ fat
|
2019-10-04 03:10:16 +02:00
|
|
|
──────────┼────────┼──────┼────────
|
2020-03-13 18:23:41 +01:00
|
|
|
baguette │ comté │ ham │ butter
|
2019-10-04 03:10:16 +02:00
|
|
|
━━━━━━━━━━┷━━━━━━━━┷━━━━━━┷━━━━━━━━
|
2020-05-05 10:05:23 +02:00
|
|
|
> open sample.url | to url
|
2019-10-04 03:10:16 +02:00
|
|
|
bread=baguette&cheese=comt%C3%A9&meat=ham&fat=butter
|
|
|
|
```
|