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.217.80
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
<!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>