Skip to content

Instantly share code, notes, and snippets.

@hideo55
Created July 27, 2012 15:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hideo55/3188610 to your computer and use it in GitHub Desktop.
Save hideo55/3188610 to your computer and use it in GitHub Desktop.
var spawn = require('child_process').spawn;
var ls = spawn('bash',['-c','ls','/*']);
ls.stdout.on('data', function(data){
console.log(data.toString());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment