Q:

Golang program to execute the specified shell script

0

Here, we will execute a specified shell script using the exec.Command() function. The exec.Command() function returns an error if we are unable to execute the specified shell script.

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 the specified shell script is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Golang program to execute the
// specified shell script

package main

import "fmt"
import "os/exec"

func main() {
	_, err := exec.Command("/bin/sh", "hello.sh").Output()
	if err != nil {
		panic(err)
	}
	fmt.Println("Script executed successfully")
}

Shell script "hello.sh"

echo "Hello World" > output.log

Output:

$go run execute.go 
Script executed successfully

$ cat output.log 
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.sh". And, we wrote the "Hello World" message into the "output.log" file.

In the main() function, we used exec.Command() function to execute "hello.sh" script and wrote the "Hello World" message into "output.log" file. After that, we printed the "Script executed successfully" 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