diff --git a/docs/manual/CoreTasks/apply.html b/docs/manual/CoreTasks/apply.html index 154fb42bc..a846bb2db 100644 --- a/docs/manual/CoreTasks/apply.html +++ b/docs/manual/CoreTasks/apply.html @@ -46,6 +46,17 @@ one mapper.

Yes, if you specify a nested mapper + + spawn + whether or not you want the commands to be spawned
+ Default is false.
+ If you spawn a command, its output will not be logged by ant.
+ The input, output, error, and result property settings are not active when spawning a process.
+ since Ant 1.6 + + No + + dir the directory in which the command should be executed. @@ -75,8 +86,25 @@ one mapper.

output - the file to which the output of the command should be - redirected. + the file to which the output of the command + should be redirected. If the error stream is not also redirected + to a file or property, it will appear in this output. + No + + + error + The file to which the standard error of the + command should be redirected. since Ant 1.6 + No + + + logError + This attribute is used when you wish to see error + output in Ant's log and you are redirecting output to a + file/property. The error output will not be included in the output + file/property. If you redirect error with the "error" or + "errorProperty" attributes, this will have no effect. + since Ant 1.6 No @@ -88,8 +116,30 @@ one mapper.

outputproperty - the name of a property in which the output of the - command should be stored. + the name of a property in which the output of the + command should be stored. Unless the error stream is redirected + to a separate file or stream, this property will include the error + output. + No + + + errorproperty + The name of a property in which the standard error of the + command should be stored. since Ant 1.6 + No + + + input + A file from which the executed command's standard + input is taken. This attribute is mutually exclusive with the + inputstring attribute. since Ant 1.6 + No + + + inputstring + A string which serves as the input stream for the + executed command. This attribute is mutually exclusive with the + input attribute. since Ant 1.6 No @@ -164,6 +214,16 @@ one mapper.

false as well. No, default is true + + resolveExecutable + When this attribute is true, the name of the + executable if resolved firstly against the project basedir and if + that does not exist, against the execution directory if + specified. On Unix systems, if you only want to allow execution of + commands in the user's path, set this to false. since Ant + 1.6 + No, default is false + maxparallel Limit the amount of parallelism by passing at diff --git a/docs/manual/CoreTasks/exec.html b/docs/manual/CoreTasks/exec.html index e330fedf2..385b5aec5 100644 --- a/docs/manual/CoreTasks/exec.html +++ b/docs/manual/CoreTasks/exec.html @@ -73,7 +73,8 @@ interpretation of exit codes.

whether or not you want the command to be spawned
Default is false.
If you spawn a command, its output will not be logged by ant.
- The input, output, error, and result property settings are not active when spawning a process. + The input, output, error, and result property settings are not active when spawning a process.
+ since Ant 1.6 No @@ -85,8 +86,8 @@ interpretation of exit codes.

error - The file to which the standard error of the command should be - redirected. + The file to which the standard error of the + command should be redirected. since Ant 1.6 No @@ -95,7 +96,7 @@ interpretation of exit codes.

log and you are redirecting output to a file/property. The error output will not be included in the output file/property. If you redirect error with the "error" or "errorProperty" - attributes, this will have no effect. + attributes, this will have no effect. since Ant 1.6 No @@ -114,21 +115,21 @@ interpretation of exit codes.

errorproperty The name of a property in which the standard error of the - command should be stored. + command should be stored. since Ant 1.6 No input A file from which the executed command's standard input is taken. This attribute is mutually exclusive with the - inputstring attribute + inputstring attribute. since Ant 1.6 No inputstring A string which serves as the input stream for the executed command. This attribute is mutually exclusive with the - input attribute. + input attribute. since Ant 1.6 No @@ -181,7 +182,8 @@ interpretation of exit codes.

if that does not exist, against the execution directory if specified. On Unix systems, if you only want to allow execution of commands in the user's path, - set this to false. + set this to false. since Ant 1.6 + No, default is false

Examples