Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
node-yargs /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
cmds
[ DIR ]
drwxr-xr-x
2023-12-23 20:12
bool.js
262
B
-rw-r--r--
2020-12-05 23:07
boolean_double.js
179
B
-rw-r--r--
2020-12-05 23:07
boolean_single.js
167
B
-rw-r--r--
2020-12-05 23:07
command_hierarchy.js
125
B
-rw-r--r--
2020-12-05 23:07
complex.js
1.35
KB
-rw-r--r--
2020-12-05 23:07
count.js
524
B
-rw-r--r--
2020-12-05 23:07
default_hash.js
154
B
-rw-r--r--
2020-12-05 23:07
default_singles.js
163
B
-rw-r--r--
2020-12-05 23:07
demand_count.js
121
B
-rw-r--r--
2020-12-05 23:07
divide.js
185
B
-rw-r--r--
2020-12-05 23:07
help.js
663
B
-rw-r--r--
2020-12-05 23:07
implies.js
205
B
-rw-r--r--
2020-12-05 23:07
implies_hash.js
437
B
-rw-r--r--
2020-12-05 23:07
line_count.js
435
B
-rw-r--r--
2020-12-05 23:07
line_count_options.js
661
B
-rw-r--r--
2020-12-05 23:07
line_count_wrap.js
785
B
-rw-r--r--
2020-12-05 23:07
nonopt.js
144
B
-rw-r--r--
2020-12-05 23:07
requires_arg.js
388
B
-rw-r--r--
2020-12-05 23:07
short.js
123
B
-rw-r--r--
2020-12-05 23:07
strict.js
452
B
-rw-r--r--
2020-12-05 23:07
string.js
243
B
-rw-r--r--
2020-12-05 23:07
usage-options.js
489
B
-rw-r--r--
2020-12-05 23:07
xup.js
218
B
-rw-r--r--
2020-12-05 23:07
yargs.html
1.54
KB
-rw-r--r--
2020-12-05 23:07
Save
Rename
// a fairly complex CLI defined using the yargs 3.0 API: var argv = require('yargs/yargs')(process.argv.slice(2)) .usage('Usage: $0 <cmd> [options]') // usage string of application. .command('install', 'install a package (name@version)') // describe commands available. .command('publish', 'publish the package inside the current working directory') .option('f', { // document options. array: true, // even single values will be wrapped in []. description: 'an array of files', default: 'test.js', alias: 'file' }) .alias('f', 'fil') .option('h', { alias: 'help', description: 'display help message' }) .string(['user', 'pass']) .implies('user', 'pass') // if 'user' is set 'pass' must be set. .help('help') .demand('q') // fail if 'q' not provided. .version('1.0.1', 'version', 'display version information') // the version string. .alias('version', 'v') // show examples of application in action. .example('npm install npm@latest -g', 'install the latest version of npm') // final message to display when successful. .epilog('for more information visit https://github.com/chevex/yargs') // disable showing help on failures, provide a final message // to display for errors. .showHelpOnFail(false, 'whoops, something went wrong! run with --help') .argv; // the parsed data is stored in argv. console.log(argv);