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.171
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 /
texlive-doc /
support /
lua-alt-getopt /
[ HOME SHELL ]
Name
Size
Permission
Action
tests
[ DIR ]
drwxr-xr-x
ChangeLog
1.37
KB
-rw-r--r--
Makefile
654
B
-rw-r--r--
NEWS.gz
408
B
-rw-r--r--
README
1.43
KB
-rw-r--r--
alt_getopt
730
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : alt_getopt
#!/usr/bin/env lua require "alt_getopt" local long_opts = { verbose = "v", help = "h", fake = 0, len = 1, output = "o", set_value = "S", ["set-output"] = "o" } local ret local optarg local optind opts,optind,optarg = alt_getopt.get_ordered_opts (arg, "hVvo:n:S:", long_opts) for i,v in ipairs (opts) do if optarg [i] then io.write ("option `" .. v .. "': " .. optarg [i] .. "\n") else io.write ("option `" .. v .. "'\n") end end optarg,optind = alt_getopt.get_opts (arg, "hVvo:n:S:", long_opts) for k,v in pairs (optarg) do io.write ("fin-option `" .. k .. "': " .. v .. "\n") end for i = optind,#arg do io.write (string.format ("ARGV [%s] = %s\n", i, arg [i])) end
Close