A commandline utility that returns a delimited list of URL parts suitable for use with other Unix utilities like cut.
urlparse [OPTIONS] URL_TO_PARSE
Display the parsed URL as delimited fields on one line.
Get protocol. Returns “http”.
urlparse --protocol http://example.com/my/page.html
Get host or domain name. Returns “example.com”.
urlparse --host http://example.com/my/page.html
Get path. Returns “/my/page.html”.
urlparse --path http://example.com/my/page.html
Get basename. Returns “page.html”.
urlparse --basename http://example.com/my/page.html
Get extension. Returns “.html”.
urlparse --extension http://example.com/my/page.html
Without options urlparse returns protocol, host and path fields separated by a tab.
-P, -protocol Display the protocol of URL (defaults to http)
-h, -help Display this help document.
urlparse can be installed with the go get command.
go get github.com/rsdoiel/urlparse/...
Copyright © 2014 All rights reserved. Released under the Simplified BSD License See: http://opensource.org/licenses/bsd-license.php