mirror of
https://github.com/thegeeklab/url-parser.git
synced 2024-11-05 21:00:53 +00:00
22 lines
312 B
Go
22 lines
312 B
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// Password prints out the password part from url
|
|
func Password(ctx *cli.Context) error {
|
|
parts := parseURL(ctx.String("url"))
|
|
|
|
if parts.User != nil {
|
|
pw, _ := parts.User.Password()
|
|
if len(pw) > 0 {
|
|
fmt.Println(pw)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|