Go to file
renovate[bot] 697fdd8bbe
fix(deps): update module github.com/urfave/cli/v2 to v2.26.0 (#78)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-04 10:15:35 +01:00
.github fix ci 2023-08-22 09:04:28 +02:00
.gitsv use uppercase title for breaking changes in changelog 2023-10-28 22:59:46 +02:00
.woodpecker ci: fix changelog generation for tag events (#72) 2023-10-17 14:03:25 +02:00
cmd/url-parser fix: rename host flag alias from h to ht (#80) 2023-12-04 09:55:56 +01:00
command feat: add option to read url from stdin (#66) 2023-07-19 20:39:30 +02:00
config fix: fallback to stdin automatically if no url provided by flag (#67) 2023-07-23 10:02:46 +02:00
.dictionary ci: fix releases and add linkcheck (#71) 2023-10-17 00:36:07 +02:00
.gitignore fix gitignore 2023-08-22 22:24:12 +02:00
.golangci.yml remove deprecated go version from golangci config 2023-11-08 09:25:24 +01:00
.markdownlint.yml ci: migrate to woodpecker (#69) 2023-08-21 16:06:34 +02:00
.prettierignore ci: migrate to woodpecker (#69) 2023-08-21 16:06:34 +02:00
CONTRIBUTING.md fix bare url in contribution file (#57) 2023-05-03 11:50:07 +02:00
LICENSE chore: end of the year maintenance 2021-12-21 10:54:56 +01:00
Makefile chore(deps): update dependency golangci/golangci-lint to v1.55.2 2023-11-06 03:16:54 +00:00
README.md docs: fix installation instructions (#73) 2023-10-17 14:38:17 +02:00
go.mod fix(deps): update module github.com/urfave/cli/v2 to v2.26.0 (#78) 2023-12-04 10:15:35 +01:00
go.sum fix(deps): update module github.com/urfave/cli/v2 to v2.26.0 (#78) 2023-12-04 10:15:35 +01:00
renovate.json fix renovate preset config 2021-12-21 09:56:03 +01:00

README.md

url-parser

Simple command-line URL parser

Build Status Go Report Card GitHub contributors License: MIT

Inspired by herloct/url-parser, a simple command-line utility for parsing URLs.

Installation

Prebuilt multiarch binaries are available for Linux only.

curl -SsfL https://github.com/thegeeklab/url-parser/releases/latest/download/url-parser-linux-amd64 -o /usr/local/bin/url-parser
chmod +x /usr/local/bin/url-parser

Build

Build the binary from source with the following command:

make build

Usage

$ url-parser --help
NAME:
   url-parser - Parse URL and shows the part of it.

USAGE:
   url-parser [global options] command [command options] [arguments...]

VERSION:
   devel

COMMANDS:
   all, a        Get all parts from url
   scheme, s     Get scheme from url
   user, u       Get username from url
   password, pw  Get password from url
   path, pt      Get path from url
   host, h       Get hostname from url
   port, p       Get port from url
   query, q      Get query from url
   fragment, f   Get fragment from url
   help, h       Shows a list of commands or help for one command

GLOBAL OPTIONS:
   --url value    source url to parse [$URL_PARSER_URL]
   --help, -h     show help
   --version, -v  print the version

Examples

$ url-parser --url https://somedomain.com host
somedomain.com

$ url-parser --url https://herloct@somedomain.com user
herloct

$ url-parser --url https://somedomain.com/path/to path
/path/to

$ url-parser --url https://somedomain.com/path/to path --path-index=1
to

$ url-parser --url https://somedomain.com/?some-key=somevalue query
some-key=somevalue

$ url-parser --url https://somedomain.com/?some-key=somevalue query --query-field=some-key
somevalue

# It is also possible to read the URL from stdin
$ echo "https://somedomain.com" | url-parser host
somedomain.com

Contributors

Special thanks to all contributors. If you would like to contribute, please see the instructions.

License

This project is licensed under the MIT License - see the LICENSE file for details.