get random >0 quotes from bash.org
npm install bash-quotes $ npm install bash-quotes # as an app library
$ sudo npm install bash-quotes -g # as a cli script
```
josh@onix:~$ bashquote
<+ChiMP> WHATS GAYER THAN ME AND STARTS WITH AN N!!?!?
<@miz> nothing
<@miz> :o
josh@onix:~$
`js
#!/usr/bin/env node
var quote = require('./index');
quote(function (err, quote) {
if (err) {
throw err;
}
console.log(quote);
});
``
MIT/X11.