在 Groovy 中,我们需要运行 Shell 命令,尤其将其当作脚本使用并配合 Git 命令时(我们知道有 JGit 类库,但是远不及命令方便,也可能是习惯)。
总之,我们需要在 Groovy 中调用 Shell 命令。
该笔记将记录:在 Groovy 中,如何执行 Shell 命令,以及常见操作、注意事项。
执行命令,并获取输出:
String result = "ls -lt ".execute().text println result.toUpperCase()
执行命令,并设置超时时间:
def resultado = new StringBuilder() def error = new StringBuilder() def comando = "ls -lt".execute() //(2) comando.consumeProcessOutput(resultado, error) //(3) comando.waitForOrKill(1000) //(4) if (!error.toString().equals("")) //(5) println "error: ${error.toString()}" }
def cmdOutput = ['ls', '/tmp/folder with spaces'].execute().text
「Apache Groovy」- Grape,依赖管理工具(学习笔记)
「Apache Groovy」- 连接 SQLite 数据库
「Groovy」- 处理 Object 与 JSON String 之间的转换
「Groovy」- 操作 HTML 文档
「Groovy」- 连接数据库(使用 MySQL 演示)
Execute commands
groovy execute with parameters containing spaces - Stack Overflow