Skip to content

Instantly share code, notes, and snippets.

@naoina
Created July 18, 2013 03:11
Show Gist options
  • Save naoina/6026441 to your computer and use it in GitHub Desktop.
Save naoina/6026441 to your computer and use it in GitHub Desktop.
'use strict';
var spawn = require('child_process').spawn
, yes = spawn('yes');
function callback(line) {
console.log(line);
}
yes.stdout.setEncoding('utf-8');
yes.stdout.on('data', function (data) {
data.split('\n').forEach(callback);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment