1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-20 15:45:32 +00:00
notes/node_modules/yargs/example/implies_hash.js
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00

27 lines
408 B
JavaScript

#!/usr/bin/env node
var argv = require('yargs')
.usage('Usage: $0 -x [num] -y [num] -w [msg] -h [msg]')
.implies({
x: 'y',
w: '--no-h',
1: 'h'
})
.argv;
if (argv.x) {
console.log('x / y : ' + (argv.x / argv.y));
}
if (argv.y) {
console.log('y: ' + argv.y);
}
if (argv.w) {
console.log('w: ' +argv.w);
}
if (argv.h) {
console.log('h: ' +argv.h);
}