process.get_args
process.get_args
Function
Read the configured parameter array of the current builder.
Syntax
process(program).get_args()
Parameters
No parameters.
Return value
| Type | Description |
|---|---|
| Array | Returns the parameter string array. |
Example
cmd = process('cmd').args(['/C', 'echo BT']) result = cmd.get_args() // Output: ["/C","echo BT"] print result
Notes
- The returned array is a snapshot of the current parameters.