Goal: execute a program via a command line from groovy code
Gotchas: Take care if you wish to pass a quoted argument that contains white space – it will be split into multiple arguments, e.g.:
will invoke executable with the following arguments:
In such a case, you may prefer to use one of the array or list of String variations, e.g.:
Ant has an exec task and it be accessed from the AntBuilder object
The good thing is that you now have all the ant features at your disposal and Ant will not break up quoted args containing whitespace.
See also: Process Management