|
Content with label external in Groovy (See content from all spaces)
Related Labels:
ant
, command
, line
, executables
, antbuilder
Executing External Processes From Groovy
Goal: execute a program via a command line from groovy code Option 1: executing a string A string can be executed in the standard java way: def command = """executable arg1 arg2 arg3"""// Create the String def proc = command.execute ...
|
|
|