mirror of
https://gitee.com/johng/gf
synced 2026-07-05 21:32:17 +08:00
13 lines
163 B
Go
13 lines
163 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/gogf/gf/os/gproc"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(gproc.Pid())
|
|
err := gproc.ShellRun("sleep 99999s")
|
|
fmt.Println(err)
|
|
}
|