demand_count.js 92 B

12345
  1. #!/usr/bin/env node
  2. var argv = require('yargs')
  3. .demand(2)
  4. .argv;
  5. console.dir(argv)