# process.args ## 功能 批量追加命令行参数。 ## 语法 ```bt process(program).args(values) ``` ## 参数 | 参数 | 类型 | 必填 | 默认值 | 说明 | | ------ | ------ | ------ | ------ | ------ | | values | Array | 否 | 无 | 参数数组。 | ## 返回值 | 类型 | 说明 | | ------ | ------ | | Process | 返回新的进程构建器。 | ## 示例 ```bt cmd = process('cmd').args(['/C', 'echo BT']) result = cmd.get_args() // 输出:["/C","echo BT"] print result ``` ## 注意事项 - 非数组参数会被忽略。