0.1.0 • Published 9 years ago

exec-sync2 v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

node-exec-sync

Execute shell commands synchronously.

How does it work?

No special voodoo here. Just the usual "pipe to file, read file" you might have seen before and a somewhat cleaner code.

Installation

I haven't published it with npm so you need to install it with the tarball at the moment:

npm install http://github.com/prc322/node-exec-sync/tarball/master

Usage

var execSync = require('node-exec-sync');
var result = execSync('your shell cmd');

Roadmap

  • Publish to npm