Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
node-yargs /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
cmds
[ DIR ]
drwxr-xr-x
bool.js
262
B
-rw-r--r--
boolean_double.js
179
B
-rw-r--r--
boolean_single.js
167
B
-rw-r--r--
command_hierarchy.js
125
B
-rw-r--r--
complex.js
1.35
KB
-rw-r--r--
count.js
524
B
-rw-r--r--
default_hash.js
154
B
-rw-r--r--
default_singles.js
163
B
-rw-r--r--
demand_count.js
121
B
-rw-r--r--
divide.js
185
B
-rw-r--r--
help.js
663
B
-rw-r--r--
implies.js
205
B
-rw-r--r--
implies_hash.js
437
B
-rw-r--r--
line_count.js
435
B
-rw-r--r--
line_count_options.js
661
B
-rw-r--r--
line_count_wrap.js
785
B
-rw-r--r--
nonopt.js
144
B
-rw-r--r--
requires_arg.js
388
B
-rw-r--r--
short.js
123
B
-rw-r--r--
strict.js
452
B
-rw-r--r--
string.js
243
B
-rw-r--r--
usage-options.js
489
B
-rw-r--r--
xup.js
218
B
-rw-r--r--
yargs.html
1.54
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : yargs.html
<!doctype html> <header> <style> #output { width: 400px; height: 350px; font-family: Lucida Console, Courier, monospace; display: block; } #input { width: 400px; } </style> </header> <body> <textarea id="output" placeholder="type '--help' and hit [enter] to get started" readonly="readonly"></textarea> <input type="text" placeholder=">" id="input" autocomplete="off" /> <script type="module"> // Import the ESM version of the yargs module: import Yargs from 'https://unpkg.com/yargs@16.0.0-beta.1/browser.mjs'; const yargs = Yargs() .scriptName('>') .command('clear', 'clear the output window', () => {}, () => { output.value = ''; }) .command('alert <message...>', 'display an alert', () => {}, (argv) => { alert(argv.message.join(' ')) }) .wrap(null) .strict() .demandCommand(1) .version('v1.0.0'); // Use the #output element to output parsed "cli" #input: const input = document.getElementById('input'); const output = document.getElementById('output'); input.addEventListener('keydown', event => { if (event.keyCode === 13) { // Enter. const argv = yargs.parse(input.value, (err, argv, _output) => { if (output) { output.value += `\n${_output}`; output.scrollTop = output.scrollHeight; } }); input.value = ''; } }); </script> </body> </html>
Close