Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > b08719f87eb7fde79aee9f73d76f7d5d > files > 19

nodejs-optimist-0.4.0-1.fc18.noarch.rpm

#!/usr/bin/env node
var argv = require('optimist')
    .string('x', 'y')
    .argv
;
console.dir([ argv.x, argv.y ]);

/* Turns off numeric coercion:
    ./node string.js -x 000123 -y 9876
    [ '000123', '9876' ]
*/