HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/1784574/root/usr/share/doc/node-yargs/examples/
Upload File :
Current File : //proc/1784574/root/usr/share/doc/node-yargs/examples/implies_hash.js
#!/usr/bin/env node

var argv = require('yargs/yargs')(process.argv.slice(2))
    .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);
}