Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.70.80.75
128 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
elinks-data /
examples /
lua /
[ HOME SHELL ]
Name
Size
Permission
Action
babelfish.lua
1.46
KB
-rw-r--r--
bm-to-elinks-bookmarks.lua
704
B
-rw-r--r--
bm.lua
8.54
KB
-rw-r--r--
config.lua
2.44
KB
-rw-r--r--
elinks-remote
719
B
-rwxr-xr-x
highlight.lua
637
B
-rw-r--r--
hooks.lua
18.32
KB
-rw-r--r--
hooks.lua.in
18.32
KB
-rw-r--r--
md5check.lua
1.47
KB
-rw-r--r--
remote.lua
1.15
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : remote.lua
-- ELinks-side part of elinks-remote -- See script elinks-remote for explanation what's this about. ---------------------------------------------------------------------- -- User options ---------------------------------------------------------------------- -- File to look in for external url to jump to external_url_file = elinks_home.."/external.url" ---------------------------------------------------------------------- -- Implementation ---------------------------------------------------------------------- function external_url () fh = io.open (external_url_file, "r") aline = current_url () if fh then aline = read (fh, "*l") io.close (fh) else print ("Couldn't open outfile") end return aline end bind_key ("main", "x", function () return "goto_url", external_url () end) function set_external_url () fh = io.open (external_url_file, "w") aline = current_link () if fh then write (fh, aline.."\n") io.close (fh) else print ("Couldn't open outfile") end end bind_key ("main", "X", function () set_external_url () end) -- vim: shiftwidth=4 softtabstop=4
Close