Also, the commands for each step share the same stdout and stdin streams. If you run a command or script that runs other commands, each of those commands use the same stdout and stdin stream as the first command or script. The step waits for all of these commands to complete.
Name | Type | Description | Required |
---|---|---|---|
Directory Offset | String | The working directory to use when executing this command. This is relative to current working directory. | Yes |
Interpreter | String | Optionally specify the interpreter to use to evaluate the command. If left blank the following platform-specific behavior will be used: Command Line will use .bat file interpreter on Windows and .com file interpreter on VMS. On other systems it will use the shell specified by 'air/shell' agent variable if present. *nix systems may override this by having the Command Line starts with a #! sequence. | No |
xargs | String | The comma-separated values to use as input to the script. They are passed as input to the script. | Yes |
Once Per Arg | Boolean | Run the script once per argument in xargs. | No |
Shell Script | String | Enter the script code to execute. | Yes |
Daemon | Boolean | Check this option to run the command in the background while permitting the step to complete immediately. The output will not be captured if running as a daemon. | No |
Output File | String | Enter the path of the file to which the command output is directed. Leave blank to discard the output. The output will not be captured if a output file is specified. | No |