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 /
ruby19 /
share /
ri /
1.9.1 /
system /
Dir /
Delete
Unzip
Name
Size
Permission
Date
Action
%5b%5d-c.ri
399
B
-rw-r--r--
2023-07-26 17:26
cdesc-Dir.ri
1.25
KB
-rw-r--r--
2023-07-26 17:26
chdir-c.ri
1.49
KB
-rw-r--r--
2023-07-26 17:26
chroot-c.ri
421
B
-rw-r--r--
2023-07-26 17:26
close-i.ri
418
B
-rw-r--r--
2023-07-26 17:26
delete-c.ri
372
B
-rw-r--r--
2023-07-26 17:26
each-i.ri
690
B
-rw-r--r--
2023-07-26 17:26
entries-c.ri
509
B
-rw-r--r--
2023-07-26 17:26
exist%3f-c.ri
458
B
-rw-r--r--
2023-07-26 17:26
exists%3f-c.ri
460
B
-rw-r--r--
2023-07-26 17:26
foreach-c.ri
722
B
-rw-r--r--
2023-07-26 17:26
getwd-c.ri
426
B
-rw-r--r--
2023-07-26 17:26
glob-c.ri
3.54
KB
-rw-r--r--
2023-07-26 17:26
home-c.ri
321
B
-rw-r--r--
2023-07-26 17:26
inspect-i.ri
245
B
-rw-r--r--
2023-07-26 17:26
mkdir-c.ri
751
B
-rw-r--r--
2023-07-26 17:26
mktmpdir-c.ri
2.04
KB
-rw-r--r--
2023-07-26 17:26
new-c.ri
265
B
-rw-r--r--
2023-07-26 17:26
open-c.ri
524
B
-rw-r--r--
2023-07-26 17:26
path-i.ri
370
B
-rw-r--r--
2023-07-26 17:26
pos%3d-i.ri
592
B
-rw-r--r--
2023-07-26 17:26
pos-i.ri
449
B
-rw-r--r--
2023-07-26 17:26
pwd-c.ri
422
B
-rw-r--r--
2023-07-26 17:26
read-i.ri
489
B
-rw-r--r--
2023-07-26 17:26
rewind-i.ri
418
B
-rw-r--r--
2023-07-26 17:26
rmdir-c.ri
370
B
-rw-r--r--
2023-07-26 17:26
seek-i.ri
647
B
-rw-r--r--
2023-07-26 17:26
tell-i.ri
451
B
-rw-r--r--
2023-07-26 17:26
tmpdir-c.ri
231
B
-rw-r--r--
2023-07-26 17:26
to_path-i.ri
376
B
-rw-r--r--
2023-07-26 17:26
unlink-c.ri
372
B
-rw-r--r--
2023-07-26 17:26
Save
Rename
U:RDoc::AnyMethod[iI" glob:ETI"Dir::glob;TT:publico:RDoc::Markup::Document:@parts[ o:RDoc::Markup::Paragraph; [ I"EReturns the filenames found by expanding <i>pattern</i> which is;TI"Ean +Array+ of the patterns or the pattern +String+, either as an;TI"G<i>array</i> or as parameters to the block. Note that this pattern;TI"7is not a regexp (it's closer to a shell glob). See;TI"C<code>File::fnmatch</code> for the meaning of the <i>flags</i>;TI"Eparameter. Note that case sensitivity depends on your system (so;TI"C<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:@labelI"<code>*</code>;T; [o; ; [I"+Matches any file. Can be restricted by;TI"-other values in the glob. <code>*</code>;TI"/will match all files; <code>c*</code> will;TI"#match all files beginning with;TI"/<code>c</code>; <code>*c</code> will match;TI".all files ending with <code>c</code>; and;TI"1<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"/<code>/ .* /x</code> in regexp. Note, this;TI"6will not match Unix-like hidden files (dotfiles).;TI"4In order to include those in the match results,;TI"*you must use something like "{*,.*}".;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"=Note that this means you cannot use backslash in windows;TI":as part of a glob, i.e. Dir["c:\\foo*"] will not work;TI"use Dir["c:/foo*"] instead;T@o:RDoc::Markup::Verbatim; [I":Dir["config.?"] #=> ["config.h"] ;FI":Dir.glob("config.?") #=> ["config.h"] ;FI"9Dir.glob("*.[a-z][a-z]") #=> ["main.rb"] ;FI":Dir.glob("*.[^r]*") #=> ["config.h"] ;FI"EDir.glob("*.{rb,h}") #=> ["main.rb", "config.h"] ;FI"EDir.glob("*") #=> ["config.h", "main.rb"] ;FI"PDir.glob("*", File::FNM_DOTMATCH) #=> [".", "..", "config.h", "main.rb"] ;FI" ;FI"'rbfiles = File.join("**", "*.rb") ;FI"9Dir.glob(rbfiles) #=> ["main.rb", ;FI"= # "lib/song.rb", ;FI"E # "lib/song/karaoke.rb"] ;FI"&libdirs = File.join("**", "lib") ;FI"5Dir.glob(libdirs) #=> ["lib"] ;FI" ;FI"7librbfiles = File.join("**", "lib", "**", "*.rb") ;FI"=Dir.glob(librbfiles) #=> ["lib/song.rb", ;FI"E # "lib/song/karaoke.rb"] ;FI" ;FI"1librbfiles = File.join("**", "lib", "*.rb") ;FI"<Dir.glob(librbfiles) #=> ["lib/song.rb"];F: @file0I"gDir.glob( pattern, [flags] ) -> array Dir.glob( pattern, [flags] ) {| filename | block } -> nil ;T0[ I"(p1, p2 = v2);FI" dir.c;T