Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 216.73.216.155
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby18 /
share /
ri /
1.8 /
system /
Dir /
Delete
Unzip
Name
Size
Permission
Date
Action
%5b%5d-c.yaml
397
B
-rw-r--r--
2023-07-26 13:47
cdesc-Dir.yaml
1.97
KB
-rw-r--r--
2023-07-26 13:47
chdir-c.yaml
1.46
KB
-rw-r--r--
2023-07-26 13:47
chroot-c.yaml
420
B
-rw-r--r--
2023-07-26 13:47
close-i.yaml
425
B
-rw-r--r--
2023-07-26 13:47
delete-c.yaml
387
B
-rw-r--r--
2023-07-26 13:47
each-i.yaml
629
B
-rw-r--r--
2023-07-26 13:47
entries-c.yaml
547
B
-rw-r--r--
2023-07-26 13:47
foreach-c.yaml
643
B
-rw-r--r--
2023-07-26 13:47
getwd-c.yaml
451
B
-rw-r--r--
2023-07-26 13:47
glob-c.yaml
3.46
KB
-rw-r--r--
2023-07-26 13:47
inspect-i.yaml
269
B
-rw-r--r--
2023-07-26 13:47
mkdir-c.yaml
605
B
-rw-r--r--
2023-07-26 13:47
mktmpdir-c.yaml
2.34
KB
-rw-r--r--
2023-07-26 13:47
new-c.yaml
277
B
-rw-r--r--
2023-07-26 13:47
open-c.yaml
510
B
-rw-r--r--
2023-07-26 13:47
path-i.yaml
397
B
-rw-r--r--
2023-07-26 13:47
pos%3d-i.yaml
636
B
-rw-r--r--
2023-07-26 13:47
pos-i.yaml
468
B
-rw-r--r--
2023-07-26 13:47
pwd-c.yaml
447
B
-rw-r--r--
2023-07-26 13:47
read-i.yaml
526
B
-rw-r--r--
2023-07-26 13:47
rewind-i.yaml
461
B
-rw-r--r--
2023-07-26 13:47
rmdir-c.yaml
385
B
-rw-r--r--
2023-07-26 13:47
seek-i.yaml
699
B
-rw-r--r--
2023-07-26 13:47
tell-i.yaml
470
B
-rw-r--r--
2023-07-26 13:47
tmpdir-c.yaml
251
B
-rw-r--r--
2023-07-26 13:47
unlink-c.yaml
387
B
-rw-r--r--
2023-07-26 13:47
Save
Rename
--- !ruby/object:RI::MethodDescription aliases: [] block_params: comment: - !ruby/struct:SM::Flow::P body: Returns the filenames found by expanding <em>pattern</em> which is an <tt>Array</tt> of the patterns or the pattern <tt>String</tt>, either as an <em>array</em> or as parameters to the block. Note that this pattern is not a regexp (it's closer to a shell glob). See <tt>File::fnmatch</tt> for the meaning of the <em>flags</em> parameter. Note that case sensitivity depends on your system (so <tt>File::FNM_CASEFOLD</tt> is ignored) - !ruby/object:SM::Flow::LIST contents: - !ruby/struct:SM::Flow::LI label: "<code>*</code>:" body: Matches any file. Can be restricted by other values in the glob. <tt>*</tt> will match all files; <tt>c*</tt> will match all files beginning with <tt>c</tt>; <tt>*c</tt> will match all files ending with <tt>c</tt>; and <b><tt>c</tt></b> will match all files that have <tt>c</tt> in them (including at the beginning or end). Equivalent to <tt>/ .* /x</tt> in regexp. - !ruby/struct:SM::Flow::LI label: "<code>**</code>:" body: Matches directories recursively. - !ruby/struct:SM::Flow::LI label: "<code>?</code>:" body: Matches any one character. Equivalent to <tt>/.{1}/</tt> in regexp. - !ruby/struct:SM::Flow::LI label: "<code>[set]</code>:" body: Matches any one character in <tt>set</tt>. Behaves exactly like character sets in Regexp, including set negation (<tt>[^a-z]</tt>). - !ruby/struct:SM::Flow::LI label: "<code>{p,q}</code>:" body: Matches either literal <tt>p</tt> or literal <tt>q</tt>. Matching literals may be more than one character in length. More than two literals may be specified. Equivalent to pattern alternation in regexp. - !ruby/struct:SM::Flow::LI label: "<code>\\</code>:" body: Escapes the next metacharacter. type: :NOTE - !ruby/struct:SM::Flow::VERB body: " Dir["config.?"] #=> ["config.h"]\n Dir.glob("config.?") #=> ["config.h"]\n Dir.glob("*.[a-z][a-z]") #=> ["main.rb"]\n Dir.glob("*.[^r]*") #=> ["config.h"]\n Dir.glob("*.{rb,h}") #=> ["main.rb", "config.h"]\n Dir.glob("*") #=> ["config.h", "main.rb"]\n Dir.glob("*", File::FNM_DOTMATCH) #=> [".", "..", "config.h", "main.rb"]\n\n rbfiles = File.join("**", "*.rb")\n Dir.glob(rbfiles) #=> ["main.rb",\n "lib/song.rb",\n "lib/song/karaoke.rb"]\n libdirs = File.join("**", "lib")\n Dir.glob(libdirs) #=> ["lib"]\n\n librbfiles = File.join("**", "lib", "**", "*.rb")\n Dir.glob(librbfiles) #=> ["lib/song.rb",\n "lib/song/karaoke.rb"]\n\n librbfiles = File.join("**", "lib", "*.rb")\n Dir.glob(librbfiles) #=> ["lib/song.rb"]\n" full_name: Dir::glob is_singleton: true name: glob params: | Dir.glob( pattern, [flags] ) => array Dir.glob( pattern, [flags] ) {| filename | block } => nil visibility: public