hexo/node_modules/optimist/example/string.js

12 lines
228 B
JavaScript
Raw Normal View History

2023-10-03 11:14:36 +08:00
#!/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' ]
*/