Mercurial > go > multipass
view multipass-add.go @ 6:10613f0f4737
Read from fd3, not stdin.
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Sat, 24 Oct 2015 23:33:16 -0400 |
parents | a4fa4f28b472 |
children | 406d3cd76739 |
line wrap: on
line source
// multipass-add allows a user to add an entry to their multipass database. package main import ( "bufio" "fmt" "os" "pfish.zone/go/multipass/auth" "pfish.zone/go/multipass/file" ) func main() { passfile, err := file.ForMe() reader := bufio.NewReader(os.Stdin) fmt.Print("Describe password: ") text, err := reader.ReadString('\n') if err != nil { fmt.Println(err.Error()) return } text = text[:len(text)-1] entry, password, err := auth.NewEntry(text) if err != nil { fmt.Println(err.Error()) return } passfile.Add(entry) fmt.Printf("New password: %s\n", password) }