mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
9 lines
179 B
JavaScript
9 lines
179 B
JavaScript
var exec = require('child_process').exec;
|
|
|
|
[0, 1].forEach(function(i) {
|
|
exec('ls', function(err, stdout, stderr) {
|
|
console.log(i);
|
|
throw new Error('hello world');
|
|
});
|
|
});
|