0.0.2 • Published 8 years ago

node-shell-commandor v0.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

node-shell-commandor

javascript terminal multiplexer and command runner

Example

const commander = require('node-shell-commandor');

commands = [{
  command: 'echo 1 && sleep 1'
}, {
  command: 'ls -lA && sleep 1 && ls -l && sleep 1 && ls -l --color=always /var/log/'
}];

commander.run(commands);

example run

How to exit? Ctrl+c or q

How to see output of selected command? Use arrows (up/down then enter)

example run example run