mirror of
https://github.com/Monibuca/engine.git
synced 2025-10-04 16:22:41 +08:00
13 lines
216 B
Go
13 lines
216 B
Go
// +build windows
|
|
|
|
package util
|
|
|
|
import (
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
)
|
|
|
|
func CreateShutdownScript() error{
|
|
return ioutil.WriteFile("shutdown.bat", []byte(fmt.Sprintf("taskkill /pid %d -t -f", os.Getpid())), 0777)
|
|
} |