mirror of https://github.com/codefeathers/w
w-cli spins up new WordBox instances. Check out https://github.com/codefeathers/WordBox
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
212 B
10 lines
212 B
#!/usr/bin/env node
|
|
|
|
var program = require('commander');
|
|
|
|
program
|
|
.version('0.1.0')
|
|
.option('-h, --help', 'Show w-cli help')
|
|
.parse(process.argv);
|
|
|
|
if (program.help) console.log('w -v for version number');
|
|
|