mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 00:43:33 +01:00
bff81f24aa
* Autogenerate missing docs * Update ansi.md * Rename question mark command docs * Delete empty?.md
396 B
396 B
url scheme
gets the scheme (eg http, file) of a url
Usage
> url scheme ...args {flags}
Parameters
- ...args: optionally operate by path
Flags
- -h, --help: Display this help message
Examples
Get scheme of a url
> echo 'http://www.example.com' | url scheme
You get an empty string if there is no scheme
> echo 'test' | url scheme