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 | : 108.162.241.240
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 : bm-to-elinks-bookmarks.lua
#!/usr/bin/lua -f -- Convert bm.lua-format bookmarks to ELinks-format bookmarks. -- Peter Wang, 2002-12-19 prog = arg[0] infile = arg[1] if not infile then print("Convert bm.lua-format bookmarks to ELinks-format bookmarks.\n") print("Usage: " .. prog .. " bookmark.lst") print("Output is written to stdout.\n") exit(1) end bookmarks = dofile(infile) if type(bookmarks) ~= "table" then print("Error loading " .. infile) exit(1) end function tab2spc(s) return gsub(s, "\t", " ") end -- just in case for i, cat in bookmarks do print(tab2spc(cat.category), "", 0, "FE") for i = 1, getn(cat) do local bm = cat[i] print(tab2spc(bm.name), tab2spc(bm.url), 1) end end
Close