This commit is contained in:
Artur Adib 2012-03-06 15:56:04 -05:00
parent 1494d9bb1a
commit 6054b84e1c
2 changed files with 4 additions and 2 deletions

View File

@ -1,8 +1,10 @@
# ShellJS - Unix shell commands for Node.js [![Build Status](https://secure.travis-ci.org/arturadib/shelljs.png)](http://travis-ci.org/arturadib/shelljs)
_This project is young and experimental. Use at your own risk._
ShellJS is a **portable** (Windows included) implementation of Unix shell commands on top of the Node.js API. You can use it to eliminate your shell script's dependency on Unix while still keeping its familiar and powerful commands.
The project is both [unit-tested](http://travis-ci.org/arturadib/shelljs) and battle-tested at Mozilla's [pdf.js](http://github.com/mozilla/pdf.js).
The project is [unit-tested](http://travis-ci.org/arturadib/shelljs) and is being used at Mozilla's [pdf.js](http://github.com/mozilla/pdf.js).
### Example

View File

@ -35,7 +35,7 @@ setTimeout(function() {
if (arg in target)
target[arg]();
else {
log('no such target: ' + arg);
console.log('no such target: ' + arg);
exit(1);
}
});