© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Ghost
Software Engineer, Kubernetes
サンプルコード package main import ( "fmt" "os/exec" "os/user" "strconv" "syscall" ) func main() { username := "test" u, _ := user.Lookup(username) uid, _ := strconv.Atoi(u.Uid) gid, _ := strconv.Atoi(u.Gid) cmd :...
No responses yet.