package main
import (
"fmt"
"os/exec"
)
func main() {
err := exec.Command("pwd").Run()
if err != nil {
fmt.Println("Command Exec Error.")
}
}
package main
import (
"fmt"
"os/exec"
)
func main() {
out, err := exec.Command("pwd").Output()
if err != nil {
fmt.Println("Command Exec Error.")
}
//Sortie du résultat de la commande exécutée
fmt.Printf("pwd result: %s", string(out))
}
- CombinedOutput
package main
import (
"fmt"
"os/exec"
)
func main() {
out, err := exec.Command("ls", "dummy").CombinedOutput()
if err != nil {
fmt.Println("Command Exec Error.")
}
//Contenu de la sortie standard + sortie d'erreur standard de la commande exécutée
fmt.Printf("ls result: \n%s", string(out))
}
package main
import (
"fmt"
"os/exec"
)
func main() {
cmd := exec.Command("sleep", "10")
fmt.Println("Command Start.")
err := cmd.Start()
if err != nil {
fmt.Println("Command Exec Error.")
}
//Attendez lorsque vous n'êtes pas commenté
//cmd.Wait()
fmt.Println("Command Exit.")
}
https://blog.y-yuki.net/entry/2017/04/28/000000
Recommended Posts