Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 18.119.158.142
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
node-yargs /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
cmds
[ DIR ]
drwxr-xr-x
bool.js
233
B
-rw-r--r--
boolean_double.js
150
B
-rw-r--r--
boolean_single.js
138
B
-rw-r--r--
command_hierarchy.js
96
B
-rw-r--r--
complex.js
1.32
KB
-rw-r--r--
count.js
495
B
-rw-r--r--
default_hash.js
125
B
-rw-r--r--
default_singles.js
134
B
-rw-r--r--
demand_count.js
92
B
-rw-r--r--
divide.js
156
B
-rw-r--r--
help.js
623
B
-rw-r--r--
implies.js
176
B
-rw-r--r--
implies_hash.js
408
B
-rw-r--r--
line_count.js
406
B
-rw-r--r--
line_count_options.js
632
B
-rw-r--r--
line_count_wrap.js
756
B
-rw-r--r--
nonopt.js
115
B
-rw-r--r--
requires_arg.js
359
B
-rw-r--r--
short.js
94
B
-rw-r--r--
strict.js
423
B
-rw-r--r--
string.js
214
B
-rw-r--r--
usage-options.js
460
B
-rw-r--r--
xup.js
189
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : complex.js
// a fairly complex CLI defined using the yargs 3.0 API: var argv = require('yargs') .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);
Close