Skip to content

Instantly share code, notes, and snippets.

@gigafied
Created February 14, 2012 22:27
Show Gist options
  • Save gigafied/1831065 to your computer and use it in GitHub Desktop.
Save gigafied/1831065 to your computer and use it in GitHub Desktop.
Lots of execs in node
var commands = [];
commands.push("git -v");
commands.push("git -v");
commands.push("git -v");
commands.push("git -v");
commands.push("git -v");
commands.push("git -v");
commands.push("git -v");
function execComplete () {
if (commands.length) {
var cmd = commands.shift();
exec(cmd, execComplete);
}
else{
// All commands executed...
}
}
execComplete();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment