url-parser/internal/command/host.go

19 lines
265 B
Go
Raw Normal View History

2020-09-21 20:24:51 +02:00
package command
2020-02-03 15:00:54 +01:00
import (
"fmt"
"github.com/urfave/cli/v2"
)
// Host prints out the host part from the url.
2020-02-03 15:00:54 +01:00
func Host(ctx *cli.Context) error {
parts := parseURL(ctx.String("url"))
if len(parts.Scheme) > 0 {
fmt.Println(parts.Hostname())
}
2020-02-03 15:00:54 +01:00
return nil
}