nushell/docs/commands/url-scheme.md
Fernando Herrera dbcadbc12c moved folders
2022-02-07 19:23:12 +00:00

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