Specified the options for executing some command.
Type | Name and description |
---|---|
ExecSpec |
args(Object... args) Adds arguments for the command to be executed. |
ExecSpec |
args(Iterable<?> args) Adds arguments for the command to be executed. |
ExecSpec |
commandLine(Object... args) Sets the full command line, including the executable to be executed plus its arguments. |
ExecSpec |
commandLine(Iterable<?> args) Sets the full command line, including the executable to be executed plus its arguments. |
List<String> |
getArgs() Returns the arguments for the command to be executed. |
ExecSpec |
setArgs(Iterable<?> args) Sets the arguments for the command to be executed. |
void |
setCommandLine(Object... args) Sets the full command line, including the executable to be executed plus its arguments. |
void |
setCommandLine(Iterable<?> args) Sets the full command line, including the executable to be executed plus its arguments. |
Methods inherited from class | Name |
---|---|
interface BaseExecSpec |
getCommandLine, getErrorOutput, getStandardInput, getStandardOutput, isIgnoreExitValue, setErrorOutput, setIgnoreExitValue, setStandardInput, setStandardOutput |
interface ProcessForkOptions |
copyTo, environment, environment, executable, getEnvironment, getExecutable, getWorkingDir, setEnvironment, setExecutable, setWorkingDir, workingDir |
Adds arguments for the command to be executed.
args
- args for the commandAdds arguments for the command to be executed.
args
- args for the commandSets the full command line, including the executable to be executed plus its arguments.
args
- the command plus the args to be executedSets the full command line, including the executable to be executed plus its arguments.
args
- the command plus the args to be executedReturns the arguments for the command to be executed. Defaults to an empty list.
Sets the arguments for the command to be executed.
args
- args for the commandSets the full command line, including the executable to be executed plus its arguments.
args
- the command plus the args to be executedSets the full command line, including the executable to be executed plus its arguments.
args
- the command plus the args to be executed