url-parser/commands/password.go

22 lines
312 B
Go
Raw Normal View History

2020-02-03 00:05:18 +01:00
package commands
import (
"fmt"
"github.com/urfave/cli/v2"
)
// Password prints out the password part from url
func Password(ctx *cli.Context) error {
2020-02-03 12:44:19 +01:00
parts := parseURL(ctx.String("url"))
2020-02-03 00:05:18 +01:00
if parts.User != nil {
pw, _ := parts.User.Password()
if len(pw) > 0 {
fmt.Println(pw)
}
}
2020-02-03 12:44:19 +01:00
2020-02-03 00:05:18 +01:00
return nil
}