Skip to content

Instantly share code, notes, and snippets.

@pgte
Created July 7, 2011 11:43
Show Gist options
  • Save pgte/1069341 to your computer and use it in GitHub Desktop.
Save pgte/1069341 to your computer and use it in GitHub Desktop.
var child_process = require('child_process');
function spawn() {
var child = child_process.spawn(...);
child.on('exit', spawn);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment