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.217.103
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby33 /
share /
ri /
system /
Dir /
Delete
Unzip
Name
Size
Permission
Date
Action
%5b%5d-c.ri
477
B
-rw-r--r--
2026-04-07 17:22
cdesc-Dir.ri
8.68
KB
-rw-r--r--
2026-04-07 17:22
chdir-c.ri
2.52
KB
-rw-r--r--
2026-04-07 17:22
chdir-i.ri
1.02
KB
-rw-r--r--
2026-04-07 17:22
children-c.ri
986
B
-rw-r--r--
2026-04-07 17:22
children-i.ri
529
B
-rw-r--r--
2026-04-07 17:22
chroot-c.ri
701
B
-rw-r--r--
2026-04-07 17:22
close-i.ri
595
B
-rw-r--r--
2026-04-07 17:22
delete-c.ri
514
B
-rw-r--r--
2026-04-07 17:22
each-i.ri
624
B
-rw-r--r--
2026-04-07 17:22
each_child-c.ri
486
B
-rw-r--r--
2026-04-07 17:22
each_child-i.ri
689
B
-rw-r--r--
2026-04-07 17:22
empty%3f-c.ri
742
B
-rw-r--r--
2026-04-07 17:22
entries-c.ri
911
B
-rw-r--r--
2026-04-07 17:22
exist%3f-c.ri
621
B
-rw-r--r--
2026-04-07 17:22
fchdir-c.ri
2.24
KB
-rw-r--r--
2026-04-07 17:22
fileno-i.ri
676
B
-rw-r--r--
2026-04-07 17:22
for_fd-c.ri
915
B
-rw-r--r--
2026-04-07 17:22
foreach-c.ri
1.11
KB
-rw-r--r--
2026-04-07 17:22
getwd-c.ri
459
B
-rw-r--r--
2026-04-07 17:22
glob-c.ri
7.97
KB
-rw-r--r--
2026-04-07 17:22
home-c.ri
634
B
-rw-r--r--
2026-04-07 17:22
inspect-i.ri
438
B
-rw-r--r--
2026-04-07 17:22
mkdir-c.ri
813
B
-rw-r--r--
2026-04-07 17:22
mktmpdir-c.ri
2.29
KB
-rw-r--r--
2026-04-07 17:22
new-c.ri
866
B
-rw-r--r--
2026-04-07 17:22
open-c.ri
1.27
KB
-rw-r--r--
2026-04-07 17:22
path-i.ri
515
B
-rw-r--r--
2026-04-07 17:22
pos%3d-i.ri
836
B
-rw-r--r--
2026-04-07 17:22
pos-i.ri
537
B
-rw-r--r--
2026-04-07 17:22
pwd-c.ri
455
B
-rw-r--r--
2026-04-07 17:22
read-i.ri
614
B
-rw-r--r--
2026-04-07 17:22
rewind-i.ri
620
B
-rw-r--r--
2026-04-07 17:22
rmdir-c.ri
512
B
-rw-r--r--
2026-04-07 17:22
seek-i.ri
854
B
-rw-r--r--
2026-04-07 17:22
tell-i.ri
560
B
-rw-r--r--
2026-04-07 17:22
tmpdir-c.ri
311
B
-rw-r--r--
2026-04-07 17:22
to_path-i.ri
490
B
-rw-r--r--
2026-04-07 17:22
unlink-c.ri
514
B
-rw-r--r--
2026-04-07 17:22
Save
Rename
U:RDoc::AnyMethod[iI" chdir:ETI"Dir::chdir;TT:privateo:RDoc::Markup::Document:@parts[o:RDoc::Markup::Paragraph; [I"+Changes the current working directory.;To:RDoc::Markup::BlankLine o; ; [I"/With argument +new_dirpath+ and no block, ;TI"$changes to the given +dirpath+:;T@o:RDoc::Markup::Verbatim; [I"%Dir.pwd # => "/example" ;TI"Dir.chdir('..') # => 0 ;TI"Dir.pwd # => "/" ;T:@format0o; ; [I"#With no argument and no block:;T@o:RDoc::Markup::List: @type:BULLET:@items[o:RDoc::Markup::ListItem:@label0; [o; ; [I"DChanges to the value of environment variable +HOME+ if defined.;To;;0; [o; ; [I"POtherwise changes to the value of environment variable +LOGDIR+ if defined.;To;;0; [o; ; [I"Otherwise makes no change.;T@o; ; [I"XWith argument +new_dirpath+ and a block, temporarily changes the working directory:;T@o;;;;[ o;;0; [o; ; [I"'Calls the block with the argument.;To;;0; [o; ; [I"$Changes to the given directory.;To;;0; [o; ; [I"0Executes the block (yielding the new path).;To;;0; [o; ; [I"-Restores the previous working directory.;To;;0; [o; ; [I"&Returns the block's return value.;T@o; ; [I" Example:;T@o;; [I""Dir.chdir('/var/spool/mail') ;TI"&Dir.pwd # => "/var/spool/mail" ;TI"Dir.chdir('/tmp') do ;TI" Dir.pwd # => "/tmp" ;TI" end ;TI"&Dir.pwd # => "/var/spool/mail" ;T; 0o; ; [I"#With no argument and a block, ;TI"Acalls the block with the current working directory (string) ;TI"*and returns the block's return value.;T@o; ; [I"3Calls to \Dir.chdir with blocks may be nested:;T@o;; [I""Dir.chdir('/var/spool/mail') ;TI"(Dir.pwd # => "/var/spool/mail" ;TI"Dir.chdir('/tmp') do ;TI" Dir.pwd # => "/tmp" ;TI" Dir.chdir('/usr') do ;TI" Dir.pwd # => "/usr" ;TI" end ;TI" Dir.pwd # => "/tmp" ;TI" end ;TI"(Dir.pwd # => "/var/spool/mail" ;T; 0o; ; [ I"IIn a multi-threaded program an error is raised if a thread attempts ;TI"@to open a +chdir+ block while another thread has one open, ;TI"8or a call to +chdir+ without a block occurs inside ;TI"9a block passed to +chdir+ (even in the same thread).;T@o; ; [I"@Raises an exception if the target directory does not exist.;T: @fileI" dir.c;T:0@omit_headings_from_table_of_contents_below0I"�Dir.chdir(new_dirpath) -> 0 Dir.chdir -> 0 Dir.chdir(new_dirpath) {|new_dirpath| ... } -> object Dir.chdir {|cur_dirpath| ... } -> object ;T0[ I"(*args);T@rFI"Dir;TcRDoc::NormalClass00