goldwarden-vaultwarden-bitw.../cmd/autofill.go

29 lines
579 B
Go
Raw Normal View History

2023-12-23 07:18:30 +01:00
//go:build linux
2023-07-17 03:23:26 +02:00
package cmd
import (
"os"
2023-12-23 07:18:30 +01:00
"github.com/quexten/goldwarden/autotype"
2023-07-17 03:23:26 +02:00
"github.com/spf13/cobra"
)
var autofillCmd = &cobra.Command{
Hidden: true,
Use: "autotype",
Short: "Autotype credentials",
Long: `Autotype credentials`,
2023-07-17 03:23:26 +02:00
Run: func(cmd *cobra.Command, args []string) {
2023-12-23 07:18:30 +01:00
username, _ := cmd.Flags().GetString("username")
// get pasword from env
password := os.Getenv("PASSWORD")
2023-12-23 07:18:30 +01:00
autotype.TypeString(username + "\t" + password)
2023-07-17 03:23:26 +02:00
},
}
func init() {
rootCmd.AddCommand(autofillCmd)
2023-12-23 07:18:30 +01:00
autofillCmd.PersistentFlags().String("username", "", "")
2023-07-17 03:23:26 +02:00
}