BT编程语言文档
stdout
设置标准输出流。如果参数为 true,则为子进程提供一个管道用于输出;如果为 false,则将标准输出重定向到空设备。语法 Command.stdout()
child = process('cmd').args("/C", "chcp 65001 && dir").stdout().child() child.stdout_read_lines(v->{ println v }) // 结束进程 child.kill()语法 Command.stdout()
child = process('cmd').args("/C", "chcp 65001 && dir").stdout().child() child.stdout_read_lines(v->{ println v }) // 结束进程 child.kill()