# process.get_args ## Function Read the configured parameter array of the current builder. ## Syntax ```bt process(program).get_args() ``` ## Parameters No parameters. ## Return value | Type | Description | | ------ | ------ | | Array | Returns the parameter string array. | ## Example ```bt 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.