mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 08:53:29 +01:00
6826a9aeac
* doc: add from-url command page * doc: add missing link to existing from-xml page. * doc: add from-ini command page
612 B
612 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 │ cheese │ meat │ fat
──────────┼────────┼──────┼────────
baguette │ comté │ ham │ butter
━━━━━━━━━━┷━━━━━━━━┷━━━━━━┷━━━━━━━━