mirror of
https://github.com/Monibuca/engine.git
synced 2025-10-06 00:56:58 +08:00
13 lines
202 B
Go
13 lines
202 B
Go
// +build !windows
|
|
|
|
package util
|
|
|
|
import (
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
)
|
|
|
|
func CreateShutdownScript() error{
|
|
return ioutil.WriteFile("shutdown.sh", []byte(fmt.Sprintf("kill -9 %d", os.Getpid())), 0777)
|
|
} |