Go
Befehle ausführen
Suche…
Zeitüberschreitung mit Interrupt und dann Kill
c := exec.Command(name, arg...)
b := &bytes.Buffer{}
c.Stdout = b
c.Stdin = stdin
if err := c.Start(); err != nil {
return nil, err
}
timedOut := false
intTimer := time.AfterFunc(timeout, func() {
log.Printf("Process taking too long. Interrupting: %s %s", name, strings.Join(arg, " "))
c.Process.Signal(os.Interrupt)
timedOut = true
})
killTimer := time.AfterFunc(timeout*2, func() {
log.Printf("Process taking too long. Killing: %s %s", name, strings.Join(arg, " "))
c.Process.Signal(os.Kill)
timedOut = true
})
err := c.Wait()
intTimer.Stop()
killTimer.Stop()
if timedOut {
log.Print("the process timed out\n")
}
Einfache Befehlsausführung
// Execute a command a capture standard out. exec.Command creates the command
// and then the chained Output method gets standard out. Use CombinedOutput()
// if you want both standard out and standerr output
out, err := exec.Command("echo", "foo").Output()
if err != nil {
log.Fatal(err)
}
Einen Befehl ausführen, dann fortfahren und warten
cmd := exec.Command("sleep", "5")
// Does not wait for command to complete before returning
err := cmd.Start()
if err != nil {
log.Fatal(err)
}
// Wait for cmd to Return
err = cmd.Wait()
log.Printf("Command finished with error: %v", err)
Einen Befehl zweimal ausführen
Ein Cmd kann nach dem Aufruf seiner Run-, Output- oder CombinedOutput-Methoden nicht wiederverwendet werden
Einen Befehl zweimal auszuführen, wird nicht funktionieren :
cmd := exec.Command("xte", "key XF86AudioPlay")
_ := cmd.Run() // Play audio key press
// .. do something else
err := cmd.Run() // Pause audio key press, fails
Fehler: exec: bereits gestartet
exec.Command
muss man zwei separate exec.Command
. Möglicherweise benötigen Sie auch eine gewisse Verzögerung zwischen den Befehlen.
cmd := exec.Command("xte", "key XF86AudioPlay")
_ := cmd.Run() // Play audio key press
// .. wait a moment
cmd := exec.Command("xte", "key XF86AudioPlay")
_ := cmd.Run() // Pause audio key press
Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow