Differences
This shows you the differences between the selected revisions of the page.
2010-08-14 | 2010-08-14 | ||
while loop checking for status make it hang when output fuffer overflows (martin) | missing semicolon (martin) | ||
Line 40: | Line 40: | ||
"exit\n"); | "exit\n"); | ||
// wait until it finishes and collect its output | // wait until it finishes and collect its output | ||
- | var output = exec.StdOut.ReadAll() | + | var output = exec.StdOut.ReadAll(); |
// optionally print the output | // optionally print the output | ||
WScript.Echo(output); | WScript.Echo(output); |