Exec

API 文档Exec

执行命令行进程。示例

task stopTomcat(type:Exec) {
  workingDir '../tomcat/bin'

  //on windows:
  commandLine 'cmd.exe', '/d', '/c', 'stop.bat'

  //on linux
  commandLine './stop.sh'

  //store the output instead of printing to the console:
  standardOutput = new ByteArrayOutputStream()

  //extension method stopTomcat.output() can be used to obtain the output:
  ext.output = {
    return standardOutput.toString()
  }
}

属性

属性描述
args

要执行的命令的参数。默认为空列表。

argumentProviders

应用程序的参数提供程序。

commandLine

完整的命令行,包括可执行文件及其参数。

environment

进程要使用的环境变量。默认为此进程的环境。

errorOutput

用于从执行命令的进程中消耗标准错误的输出流。默认为 System.err

executable

要使用的可执行文件的名称。

executionResult

此任务运行的命令的结果。如果此任务尚未执行,则提供程序没有值。

ignoreExitValue

说明是否忽略非零退出值,或者是否抛出异常。默认为 false

standardInput

执行命令的进程的标准输入流。进程完成后,流将关闭。默认为空流。

standardOutput

用于从执行命令的进程中消耗标准输出的输出流。默认为 System.out

workingDir

进程的工作目录。默认为项目目录。

方法

方法描述
args(args)

为要执行的命令添加参数。

args(args)

为要执行的命令添加参数。

commandLine(args)

设置完整的命令行,包括要执行的可执行文件及其参数。

commandLine(arguments)

设置完整的命令行,包括要执行的可执行文件及其参数。

environment(name, value)

为此进程的环境添加环境变量。

environment(environmentVariables)

为此进程的环境添加一些环境变量。

executable(executable)

设置要使用的可执行文件的名称。

workingDir(dir)

设置进程的工作目录。提供的参数按照 Project.file(java.lang.Object) 进行评估。

脚本块

没有脚本块

属性详情

List<String> args

要执行的命令的参数。默认为空列表。

List<CommandLineArgumentProvider> argumentProviders (只读)

应用程序的参数提供程序。

List<String> commandLine

完整的命令行,包括可执行文件及其参数。

Map<String, Object> environment

进程要使用的环境变量。默认为此进程的环境。

OutputStream errorOutput

用于从执行命令的进程中消耗标准错误的输出流。默认为 System.err

String executable

要使用的可执行文件的名称。

Provider<ExecResult> executionResult

此任务运行的命令的结果。如果此任务尚未执行,则提供程序没有值。

boolean ignoreExitValue

说明是否忽略非零退出值,或者是否抛出异常。默认为 false

InputStream standardInput

执行命令的进程的标准输入流。进程完成后,流将关闭。默认为空流。

OutputStream standardOutput

用于从执行命令的进程中消耗标准输出的输出流。默认为 System.out

File workingDir

进程的工作目录。默认为项目目录。

方法详情

T args(Iterable<?> args)

为要执行的命令添加参数。

T args(Object... args)

为要执行的命令添加参数。

T commandLine(Iterable<?> args)

设置完整的命令行,包括要执行的可执行文件及其参数。

T commandLine(Object... arguments)

设置完整的命令行,包括要执行的可执行文件及其参数。

T environment(String name, Object value)

为此进程的环境添加环境变量。

T environment(Map<String, ?> environmentVariables)

为此进程的环境添加一些环境变量。

T executable(Object executable)

设置要使用的可执行文件的名称。

T workingDir(Object dir)

设置进程的工作目录。提供的参数按照 Project.file(java.lang.Object) 进行评估。