Label: command

Content with label command in Groovy (See content from all spaces)
Related Labels: external , ant , 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 ...