...
- arg1 = "first
- arg2 = with
- arg3 = space"
- arg4 = second
In such a case, you may prefer to use the array of String variation:
| Code Block |
|---|
["executable", "first with space", "second"].execute()
|
Option 2: using ant builder's exec task
...
...
In such a case, you may prefer to use the array of String variation:
| Code Block |
|---|
["executable", "first with space", "second"].execute()
|
...