Split a string of command line options into and argv(argument vector) array
npm install argument-vectorSplit a string of command line options into and argv(argument vector) array.
This is perticularly handy for passing arguments to require('child_process').spawn
```
$ npm install argument-vector --save
`js``
var parser = require('argument-vector')();
var argv = parser.parse('curl http://example.com --keepalive-time 5 --cookie msg="String with spaces" -XPOST');
//=> ['curl', 'http://example.com', '--keepalive-time', '5', '--cookie', 'msg="String with spaces"', '-XPOST']
MIT © Colin Milhench