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
var yargs = require('../index'); var argv = require('yargs/yargs')(process.argv.slice(2)) .usage('This is my awesome program\n\nUsage: $0 [options]') .help('help').alias('help', 'h') .version('version', '1.0.1').alias('version', 'V') .options({ input: { alias: 'i', description: "<filename> Input file name", requiresArg: true, required: true }, output: { alias: 'o', description: "<filename> output file name", requiresArg: true, required: true } }) .argv; console.log('Inspecting options'); console.dir(argv); console.log("input:", argv.input); console.log("output:", argv.output);