Name |
How Many? |
Description |
env |
0 or more |
Environment variables for the child process |
background |
0 or 1 |
Specifies that the command should be executed as a background process |
outputFile |
0 or 1 1 |
The name of the file in which to store the command's standard output |
errorFile |
0 or 1 1 |
The name of the file in which to store the command's standard error output. |
inputText |
Only 1 of these elements may be specified 2 |
The text to feed to the command's standard input. This element cannot be specified if inputFile is specified. |
inputFile |
The name of the file from which to read command's standard input |
|
exec |
1 of these elements must be specified 3 |
Specifies the executable to execute |
shell |
Specifies the shell command to execute |
|
successCriteria |
0 or 1 |
The criteria to evaluate if this step was successful or not. |
1 Both <outputFile> and <errorFile> must be specified if <background> element is specified.
2 inputText and inputFile elements are optional. Only one of them may be specified at a time.
3 One of exec or shell elements must be specified. It is illegal to have both exec and shell elements in an execNative element.
The <inputText> and <inputFile> elements are optional. Only one of them may be specified at a time.
One of exec or shell elements must be specified. It is illegal to have both exec and shell elements in an execNative element.