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.47
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 /
texlive /
texmf-dist /
scripts /
texdoc /
[ HOME SHELL ]
Name
Size
Permission
Action
Data.tlpdb.lua
1.47
MB
-rwxr-xr-x
texdoc.tlu
1.35
KB
-rwxr-xr-x
texdoclib-alias.tlu
3.14
KB
-rwxr-xr-x
texdoclib-cli.tlu
6.89
KB
-rwxr-xr-x
texdoclib-config.tlu
19.93
KB
-rwxr-xr-x
texdoclib-const.tlu
4.16
KB
-rwxr-xr-x
texdoclib-score.tlu
9.64
KB
-rwxr-xr-x
texdoclib-search.tlu
23.89
KB
-rwxr-xr-x
texdoclib-util.tlu
3.29
KB
-rwxr-xr-x
texdoclib-view.tlu
9.26
KB
-rwxr-xr-x
texdoclib.tlu
1.29
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : texdoc.tlu
#!/usr/bin/env texlua -- texdoc.tlu: the main program of texdoc -- -- The TeX Live Team, GPLv3, see texdoclib.tlu for details -- Note: we keep this file small as much as possible so that make it easier -- to install a new version of texdoc in TEXMFHOME. local lfs = require 'lfs' local kpse = require 'kpse' -- setup kpse library kpse.set_program_name(arg[-1], 'texdoc') -- get realpath of this file local function realpath(p) if os.type == 'unix' then local e = os.execute('which realpath >/dev/null 2>&1') if e == 0 then local h = io.popen(string.format("realpath '%s'", p)) local r = h:read('*a') h:close() return r:gsub('\n$', '') end end return '' end local file = realpath(arg[0]) -- if the file is not in TEXMFMAIN, set temporal TEXMFAUXTREES and TEXMFDIST local texmf = file:match('^(.*/texmf[^/]*)/scripts/texdoc/texdoc.tlu$') if texmf ~= nil then if texmf ~= kpse.var_value('TEXMFMAIN') then io.stderr:write('Info: ' .. 'Running Texdoc not installed in the current TEXMFMAIN.\n') os.setenv('TEXMFAUXTREES', texmf .. ',') os.setenv('TEXMFDIST', ',') end end -- load the library and execute local texdoc = require 'texdoclib' assert(texdoc.cli, 'Internal error: Texdoc is not installed properly.') texdoc.cli.exec() -- vim: ft=lua:
Close