Skip to content

Instantly share code, notes, and snippets.

@chmouel
Created April 10, 2019 07:50
Show Gist options
  • Save chmouel/6a25d9777e5a002eaadfe64f896985a6 to your computer and use it in GitHub Desktop.
Save chmouel/6a25d9777e5a002eaadfe64f896985a6 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"log"
"os/user"
)
func main() {
userc, err := user.Current()
if err != nil {
log.Fatalf("Unexpected error getting the user home directory: %v", err)
}
fmt.Println(userc.HomeDir)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment