Linux premium134.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
: 162.0.232.104 | : 216.73.216.40
Cant Read [ /etc/named.conf ]
?8.1.34
mfbsrygq
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
opt /
alt /
ruby40 /
share /
ruby /
[ HOME SHELL ]
Name
Size
Permission
Action
?;
bigdecimal
[ DIR ]
drwxr-xr-x
?;
cgi
[ DIR ]
drwxr-xr-x
?;
did_you_mean
[ DIR ]
drwxr-xr-x
?;
digest
[ DIR ]
drwxr-xr-x
?;
erb
[ DIR ]
drwxr-xr-x
?;
error_highlight
[ DIR ]
drwxr-xr-x
?;
forwardable
[ DIR ]
drwxr-xr-x
?;
io
[ DIR ]
drwxr-xr-x
?;
json
[ DIR ]
drwxr-xr-x
?;
net
[ DIR ]
drwxr-xr-x
?;
objspace
[ DIR ]
drwxr-xr-x
?;
open3
[ DIR ]
drwxr-xr-x
?;
openssl
[ DIR ]
drwxr-xr-x
?;
optparse
[ DIR ]
drwxr-xr-x
?;
prism
[ DIR ]
drwxr-xr-x
?;
psych
[ DIR ]
drwxr-xr-x
?;
random
[ DIR ]
drwxr-xr-x
?;
ripper
[ DIR ]
drwxr-xr-x
?;
set
[ DIR ]
drwxr-xr-x
?;
strscan
[ DIR ]
drwxr-xr-x
?;
syntax_suggest
[ DIR ]
drwxr-xr-x
?;
unicode_normalize
[ DIR ]
drwxr-xr-x
?;
uri
[ DIR ]
drwxr-xr-x
?;
vendor_ruby
[ DIR ]
drwxr-xr-x
?;
yaml
[ DIR ]
drwxr-xr-x
English.rb
5.96
KB
-rw-r--r--
bundled_gems.rb
8.41
KB
-rw-r--r--
cgi.rb
311
B
-rw-r--r--
coverage.rb
517
B
-rw-r--r--
date.rb
1.17
KB
-rw-r--r--
delegate.rb
11.96
KB
-rw-r--r--
did_you_mean.rb
4.51
KB
-rw-r--r--
digest.rb
3.3
KB
-rw-r--r--
erb.rb
32.57
KB
-rw-r--r--
error_highlight.rb
84
B
-rw-r--r--
expect.rb
2.19
KB
-rw-r--r--
fileutils.rb
79.18
KB
-rw-r--r--
find.rb
2.54
KB
-rw-r--r--
forwardable.rb
8.81
KB
-rw-r--r--
ipaddr.rb
22.86
KB
-rw-r--r--
json.rb
21.45
KB
-rw-r--r--
mkmf.rb
93.16
KB
-rw-r--r--
monitor.rb
6.97
KB
-rw-r--r--
objspace.rb
4.14
KB
-rw-r--r--
open-uri.rb
28.58
KB
-rw-r--r--
open3.rb
47.51
KB
-rw-r--r--
openssl.rb
1.24
KB
-rw-r--r--
optionparser.rb
59
B
-rw-r--r--
optparse.rb
65.44
KB
-rw-r--r--
pathname.rb
2
KB
-rw-r--r--
pp.rb
19.21
KB
-rw-r--r--
prettyprint.rb
15.95
KB
-rw-r--r--
prism.rb
3.74
KB
-rw-r--r--
psych.rb
26.05
KB
-rw-r--r--
resolv.rb
88.39
KB
-rw-r--r--
ripper.rb
2.44
KB
-rw-r--r--
securerandom.rb
2.28
KB
-rw-r--r--
shellwords.rb
7.53
KB
-rw-r--r--
singleton.rb
5.59
KB
-rw-r--r--
socket.rb
61.26
KB
-rw-r--r--
syntax_suggest.rb
74
B
-rw-r--r--
tempfile.rb
20.7
KB
-rw-r--r--
time.rb
24.01
KB
-rw-r--r--
timeout.rb
10.48
KB
-rw-r--r--
tmpdir.rb
5.62
KB
-rw-r--r--
tsort.rb
14.36
KB
-rw-r--r--
un.rb
11.17
KB
-rw-r--r--
uri.rb
3.09
KB
-rw-r--r--
weakref.rb
1.39
KB
-rw-r--r--
yaml.rb
2.16
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : pathname.rb
# frozen_string_literal: true # # = pathname.rb # # Object-Oriented Pathname Class # # Author:: Tanaka Akira <akr@m17n.org> # Documentation:: Author and Gavin Sinclair # # For documentation, see class Pathname. # class Pathname # * Find * # # Iterates over the directory tree in a depth first manner, yielding a # Pathname for each file under "this" directory. # # Note that you need to require 'pathname' to use this method. # # Returns an Enumerator if no block is given. # # Since it is implemented by the standard library module Find, Find.prune can # be used to control the traversal. # # If +self+ is +.+, yielded pathnames begin with a filename in the # current directory, not +./+. # # See Find.find # def find(ignore_error: true) # :yield: pathname return to_enum(__method__, ignore_error: ignore_error) unless block_given? require 'find' if @path == '.' Find.find(@path, ignore_error: ignore_error) {|f| yield self.class.new(f.delete_prefix('./')) } else Find.find(@path, ignore_error: ignore_error) {|f| yield self.class.new(f) } end end end class Pathname # * FileUtils * # Recursively deletes a directory, including all directories beneath it. # # Note that you need to require 'pathname' to use this method. # # See FileUtils.rm_rf def rmtree(noop: nil, verbose: nil, secure: nil) # The name "rmtree" is borrowed from File::Path of Perl. # File::Path provides "mkpath" and "rmtree". require 'fileutils' FileUtils.rm_rf(@path, noop: noop, verbose: verbose, secure: secure) self end end class Pathname # * tmpdir * # Creates a tmp directory and wraps the returned path in a Pathname object. # # Note that you need to require 'pathname' to use this method. # # See Dir.mktmpdir def self.mktmpdir require 'tmpdir' unless defined?(Dir.mktmpdir) if block_given? Dir.mktmpdir do |dir| dir = self.new(dir) yield dir end else self.new(Dir.mktmpdir) end end end
Close