欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Go语言调用Shell与可执行文件的实现

程序员文章站 2022-06-22 09:34:28
os/exec包可用于调用外部命令,可以使用管道连接输入输出,并支持阻塞与非阻塞方式执行命令。os/exec包中关键的类型为cmd,以下介绍的所有方法皆服务于该类型:func command(name...

os/exec包可用于调用外部命令,可以使用管道连接输入输出,并支持阻塞与非阻塞方式执行命令。

os/exec包中关键的类型为cmd,以下介绍的所有方法皆服务于该类型:

func command(name string, arg ...string) *cmd
方法返回一个*cmd, 用于执行name指定的程序(携带arg参数)

func (c *cmd) run() error
执行cmd中包含的命令,阻塞直到命令执行完成

func (c *cmd) start() error
执行cmd中包含的命令,该方法立即返回,并不等待命令执行完成

func (c *cmd) wait() error
该方法会阻塞直到cmd中的命令执行完成,但该命令必须是被start方法开始执行的

func (c *cmd) output() ([]byte, error)
执行cmd中包含的命令,并返回标准输出的切片

func (c *cmd) combinedoutput() ([]byte, error)
执行cmd中包含的命令,并返回标准输出与标准错误合并后的切片

func (c *cmd) stdinpipe() (io.writecloser, error)
返回一个管道,该管道会在cmd中的命令被启动后连接到其标准输入

func (c *cmd) stdoutpipe() (io.readcloser, error)
返回一个管道,该管道会在cmd中的命令被启动后连接到其标准输出

func (c *cmd) stderrpipe() (io.readcloser, error)
返回一个管道,该管道会在cmd中的命令被启动后连接到其标准错误

普通调用示例:

调用shell命令或可执行文件

演示在当前目录创建一个空文件

package main

import (
  "fmt"
  "os/exec"
)

func main(){
  cmd := exec.command("touch", "test_file")

  err := cmd.run()
  if err != nil {
    fmt.println("execute command failed:" + err.error())
    return
  }

  fmt.println("execute command finished.")
}

一般不建议使用这种默认方式调用shell脚本:

cmd := exec.command("my_shell.sh")

因为这种方式实际的执行结果和命令行执行#sh my_shell.sh一样,如果你的shell脚本不满足sh的规范,就会调用失败。

调用shell脚本

设置bash来调用指定shell脚本,dir_size.sh为我们测试用的shell脚本。调用完成后打印shell脚本的标准输出到控制台。

package main

import (
  "fmt"
  "os/exec"
)

func main(){
  command := `./dir_size.sh .`
  cmd := exec.command("/bin/bash", "-c", command)

  output, err := cmd.output()
  if err != nil {
    fmt.printf("execute shell:%s failed with error:%s", command, err.error())
    return
  }
  fmt.printf("execute shell:%s finished with output:\n%s", command, string(output))
}

dir_size.sh示例文件内容如下,用于输出当前目录的大小:

#!/bin/bash
du -h --max-depth=1 $1

go程序运行结果:

[root@localhost opt]# ll
total 2120
-rwx------. 1 root root   36 jan 22 16:37 dir_size.sh
-rwx------. 1 root root 2152467 jan 22 16:39 execcommand
drwxrwxr-x. 11 1000 1000  4096 jul 12 2017 kibana
drwx------. 2 root root  4096 jan 16 10:45 sftpuser
drwx------. 3 root root  4096 jan 22 16:41 upload
[root@localhost opt]# ./execcommand 
execute shell:./dir_size.sh . finished with output:
4.0k  ./sftpuser
181m  ./kibana
1.1g  ./upload
1.2g  .

使用输入输出pipe

演示使用管道连接到grep命令的标准输入,过滤包含test的字符串,并使用管道连接标准输出,打印运行结果:

package main

import (
  "fmt"
  "io/ioutil"
  "os/exec"
)

func main(){
  cmd := exec.command("/bin/bash", "-c", "grep test")

  stdin, _ := cmd.stdinpipe()
  stdout, _ := cmd.stdoutpipe()

  if err := cmd.start(); err != nil{
    fmt.println("execute failed when start:" + err.error())
    return
  }

  stdin.write([]byte("go text for grep\n"))
  stdin.write([]byte("go test text for grep\n"))
  stdin.close()

  out_bytes, _ := ioutil.readall(stdout)
  stdout.close()

  if err := cmd.wait(); err != nil {
    fmt.println("execute failed when wait:" + err.error())
    return
  }

  fmt.println("execute finished:" + string(out_bytes))
}

go程序运行结果:

[root@localhost ~]# ./execcommand
execute finished:go test text for grep

阻塞/非阻塞方式调用

文章开头方法介绍处已经介绍的很清楚,且前面示例都有涉及,就不另行说明了。

参考文档:
golang标准库文档

到此这篇关于go语言调用shell与可执行文件的实现的文章就介绍到这了,更多相关go语言调用shell内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!