l0bsterssg

node.js static responsive blog post generator
Log | Files | Refs | README

string.js (217B)


      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 */