2
0
Fork 0
mirror of https://github.com/nushell/nushell synced 2025-02-13 12:43:48 +00:00
nushell/docs/commands/from-url.md

405 B

from url

Parse url-encoded string as a table.

Example

> echo 'bread=baguette&cheese=comt%C3%A9&meat=ham&fat=butter' | from url
────────┬──────────
 bread  │ baguette
 cheese │ comté
 meat   │ ham
 fat    │ butter
────────┴──────────