How do I capture the stream that is being created for the Process? See the limited Fantom documentation for Process: http://fantom.org/doc/sys/Process
class Ipconfig {
Void main() {
proc := Process()
proc.command = Str["ipconfig"]
proc.in = Env.cur().in
proc.run
proc.join
test := proc.in.readAllLines
echo(test)
}
}