Mark McGranaghan 1b4e6913aa users
2012-09-23 12:22:06 -04:00

12 lines
166 B
Go

package main
import "fmt"
import "os/user"
func main() {
me, _ := user.Current()
fmt.Println(me)
root, _ := user.Lookup("root")
fmt.Println(root)
}