Websocket
[VSoRC/.git] / node_modules / node-static / node_modules / optimist / example / string.js
1 #!/usr/bin/env node
2 var argv = require('optimist')
3     .string('x', 'y')
4     .argv
5 ;
6 console.dir([ argv.x, argv.y ]);
7
8 /* Turns off numeric coercion:
9     ./node string.js -x 000123 -y 9876
10     [ '000123', '9876' ]
11 */