deno.land / x / yargs@v17.6.0-deno / example / implies_hash.js

implies_hash.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env nodevar 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);}
yargs

Version Info

Tagged at
a year ago