mirror of https://github.com/thegeeklab/url-parser
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
![]() |
3 days ago | |
---|---|---|
.chglog | 1 year ago | |
.github | 8 months ago | |
cmd/url-parser | 1 month ago | |
internal/command | 1 month ago | |
.drone.yml | 1 month ago | |
.gitignore | 11 months ago | |
.golangci.yml | 1 month ago | |
.prettierignore | 1 year ago | |
CONTRIBUTING.md | 2 years ago | |
LICENSE | 1 year ago | |
Makefile | 3 days ago | |
README.md | 8 months ago | |
go.mod | 1 month ago | |
go.sum | 2 months ago | |
renovate.json | 1 year ago |
README.md
url-parser
Inspired by herloct/url-parser, a simple command-line utility for parsing URLs.
Installation
Prebuild multiarch binaries are availabe for Linux only:
curl -L https://github.com/thegeeklab/url-parser/releases/download/v0.1.0/url-parser-0.1.0-linux-amd64 > /usr/local/bin/url-parser
chmod +x /usr/local/bin/url-parser
url-parser --help
Build
Build the binary from source with the following command:
export GOOS=linux
export GOARCH=amd64
export CGO_ENABLED=0
export GO111MODULE=on
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 (default: false)
--version, -v print the version (default: false)
Examples
$ url-parser host --url https://somedomain.com
somedomain.com
$ url-parser user --url https://herloct@somedomain.com
herloct
$ url-parser path --url https://somedomain.com/path/to
/path/to
$ url-parser path --path-index=1 --url https://somedomain.com/path/to
to
$ url-parser query --url https://somedomain.com/?some-key=somevalue
some-key=somevalue
$ url-parser query --query-field=some-key --url https://somedomain.com/?some-key=somevalue
somevalue
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.