2010-03-23 02:47:04 +01:00
|
|
|
var sys = require("sys"),
|
|
|
|
childProcess = require("child_process");
|
2010-03-09 04:06:25 +01:00
|
|
|
|
2009-07-13 12:48:59 +02:00
|
|
|
function next (i) {
|
|
|
|
if (i <= 0) return;
|
|
|
|
|
2010-03-23 02:47:04 +01:00
|
|
|
var child = childProcess.spawn("echo", ["hello"]);
|
2009-07-13 12:48:59 +02:00
|
|
|
|
2010-03-23 02:47:04 +01:00
|
|
|
child.stdout.addListener("data", function (chunk) {
|
|
|
|
sys.print(chunk);
|
2009-07-13 12:48:59 +02:00
|
|
|
});
|
|
|
|
|
2009-08-26 22:11:51 +02:00
|
|
|
child.addListener("exit", function (code) {
|
2009-09-28 16:50:19 +02:00
|
|
|
if (code != 0) process.exit(-1);
|
2009-07-13 12:48:59 +02:00
|
|
|
next(i - 1);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
next(500);
|