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 /
ruby33 /
share /
ruby /
irb /
Delete
Unzip
Name
Size
Permission
Date
Action
cmd
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
command
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
debug
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
ext
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
helper_method
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
lc
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
color.rb
9.18
KB
-rw-r--r--
2026-04-07 17:22
color_printer.rb
1.29
KB
-rw-r--r--
2026-04-07 17:22
command.rb
484
B
-rw-r--r--
2026-04-07 17:22
completion.rb
13.76
KB
-rw-r--r--
2026-04-07 17:22
context.rb
19.92
KB
-rw-r--r--
2026-04-07 17:22
debug.rb
4.49
KB
-rw-r--r--
2026-04-07 17:22
default_commands.rb
7.64
KB
-rw-r--r--
2026-04-07 17:22
easter-egg.rb
3.99
KB
-rw-r--r--
2026-04-07 17:22
frame.rb
1.92
KB
-rw-r--r--
2026-04-07 17:22
help.rb
612
B
-rw-r--r--
2026-04-07 17:22
helper_method.rb
657
B
-rw-r--r--
2026-04-07 17:22
history.rb
2.72
KB
-rw-r--r--
2026-04-07 17:22
init.rb
13.6
KB
-rw-r--r--
2026-04-07 17:22
input-method.rb
13.86
KB
-rw-r--r--
2026-04-07 17:22
inspector.rb
3.91
KB
-rw-r--r--
2026-04-07 17:22
locale.rb
3.96
KB
-rw-r--r--
2026-04-07 17:22
nesting_parser.rb
8.24
KB
-rw-r--r--
2026-04-07 17:22
notifier.rb
7.18
KB
-rw-r--r--
2026-04-07 17:22
output-method.rb
2.24
KB
-rw-r--r--
2026-04-07 17:22
pager.rb
2.58
KB
-rw-r--r--
2026-04-07 17:22
ruby-lex.rb
15.82
KB
-rw-r--r--
2026-04-07 17:22
ruby_logo.aa
4.7
KB
-rw-r--r--
2026-04-07 17:22
source_finder.rb
4.25
KB
-rw-r--r--
2026-04-07 17:22
statement.rb
1.4
KB
-rw-r--r--
2026-04-07 17:22
version.rb
239
B
-rw-r--r--
2026-04-07 17:22
workspace.rb
5.96
KB
-rw-r--r--
2026-04-07 17:22
ws-for-case-2.rb
160
B
-rw-r--r--
2026-04-07 17:22
xmp.rb
3.99
KB
-rw-r--r--
2026-04-07 17:22
Save
Rename
require "pathname" module IRB module HistorySavingAbility # :nodoc: def support_history_saving? true end def reset_history_counter @loaded_history_lines = self.class::HISTORY.size end def load_history history = self.class::HISTORY if history_file = IRB.conf[:HISTORY_FILE] history_file = File.expand_path(history_file) end history_file = IRB.rc_file("_history") unless history_file if history_file && File.exist?(history_file) File.open(history_file, "r:#{IRB.conf[:LC_MESSAGES].encoding}") do |f| f.each { |l| l = l.chomp if self.class == RelineInputMethod and history.last&.end_with?("\\") history.last.delete_suffix!("\\") history.last << "\n" << l else history << l end } end @loaded_history_lines = history.size @loaded_history_mtime = File.mtime(history_file) end end def save_history history = self.class::HISTORY.to_a if num = IRB.conf[:SAVE_HISTORY] and (num = num.to_i) != 0 if history_file = IRB.conf[:HISTORY_FILE] history_file = File.expand_path(history_file) end history_file = IRB.rc_file("_history") unless history_file # When HOME and XDG_CONFIG_HOME are not available, history_file might be nil return unless history_file # Change the permission of a file that already exists[BUG #7694] begin if File.stat(history_file).mode & 066 != 0 File.chmod(0600, history_file) end rescue Errno::ENOENT rescue Errno::EPERM return rescue raise end if File.exist?(history_file) && File.mtime(history_file) != @loaded_history_mtime history = history[@loaded_history_lines..-1] if @loaded_history_lines append_history = true end pathname = Pathname.new(history_file) unless Dir.exist?(pathname.dirname) warn "Warning: The directory to save IRB's history file does not exist. Please double check `IRB.conf[:HISTORY_FILE]`'s value." return end File.open(history_file, (append_history ? 'a' : 'w'), 0o600, encoding: IRB.conf[:LC_MESSAGES]&.encoding) do |f| hist = history.map{ |l| l.scrub.split("\n").join("\\\n") } unless append_history begin hist = hist.last(num) if hist.size > num and num > 0 rescue RangeError # bignum too big to convert into `long' # Do nothing because the bignum should be treated as infinity end end f.puts(hist) end end end end end