gobyexample/xx-users.go
Mark McGranaghan 983d7f7383 more
2012-09-17 11:52:20 -07:00

11 lines
150 B
Go

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