Q:

Golang program to execute a specified executable/binary file

0

Here, we will execute a specified executable/binary using exec.Command() function. The exec.Command() function returns an error, if we are unable to execute a specified shell script otherwise it will return the output of the executable file.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to execute specified executable/binary file is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

hello.go

package main

import "fmt"

func main() {
	fmt.Println("Hello World")
}

sample.go

// Golang program to execute a
// specified executable/binary file

package main

import "fmt"
import "os/exec"

func main() {
	res, err := exec.Command("./hello").Output()
	if err != nil {
		panic(err)
	}
	fmt.Printf("OUTPUT: %s", res)
}

Output:

$ go build hello.go 
$ go run sample.go 
OUTPUT: Hello World

Explanation:

In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the required packages to predefined functions.

Here, we also created a script file "hello.go". And, we printed the "Hello World" message on the console screen.

In the main() function, we used exec.Command() function to execute the "hello" executable file and printed the "Hello World" message on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now