Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am jckfa on github.
  • I am jckfa (https://keybase.io/jckfa) on keybase.
  • I have a public key ASC-HAq-Gdc488pnaliXHkZU_wFaSGfqzRUSCZPfMFKSkQo

To claim this, I am signing this object:

@jckfa
jckfa / example.js
Last active July 24, 2016 21:48 — forked from millermedeiros/example.js
execute multiple shell commands in series on node.js
var shell = require('./shellHelper');
// execute a single shell command
shell.exec('touch file1', function(err) {
console.log('created "file1"');
});
// execute multiple commands in series
shell.series([