Skip to content

Instantly share code, notes, and snippets.

@realazthat
Created April 15, 2018 02:49
Show Gist options
  • Save realazthat/6e56ed907bfa32853d8235d686ec0b09 to your computer and use it in GitHub Desktop.
Save realazthat/6e56ed907bfa32853d8235d686ec0b09 to your computer and use it in GitHub Desktop.
const {spawn} = require('child_process');
const readline = require('readline');
const ls = spawn('ls', ['-lh', '/usr']);
const rl = readline.createInterface({
input: ls.stdout
});
rl.on('line', (line) => {
console.log(line);
});
ls.on('close', (code) => {
console.log(`code: ${code}`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment