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 /
ruby30 /
share /
ruby /
irb /
cmd /
Delete
Unzip
Name
Size
Permission
Date
Action
chws.rb
537
B
-rw-r--r--
2024-06-26 17:25
fork.rb
642
B
-rw-r--r--
2024-06-26 17:25
help.rb
901
B
-rw-r--r--
2024-06-26 17:25
info.rb
614
B
-rw-r--r--
2024-06-26 17:25
load.rb
1.2
KB
-rw-r--r--
2024-06-26 17:25
ls.rb
2.39
KB
-rw-r--r--
2024-06-26 17:25
measure.rb
1.04
KB
-rw-r--r--
2024-06-26 17:25
nop.rb
796
B
-rw-r--r--
2024-06-26 17:25
pushws.rb
677
B
-rw-r--r--
2024-06-26 17:25
show_source.rb
2.91
KB
-rw-r--r--
2024-06-26 17:25
subirb.rb
661
B
-rw-r--r--
2024-06-26 17:25
whereami.rb
362
B
-rw-r--r--
2024-06-26 17:25
Save
Rename
# frozen_string_literal: false # # change-ws.rb - # $Release Version: 0.9.6$ # $Revision$ # by Keiju ISHITSUKA(keiju@ruby-lang.org) # # -- # # # require_relative "nop" require_relative "../ext/workspaces" # :stopdoc: module IRB module ExtendCommand class Workspaces < Nop def execute(*obj) irb_context.workspaces.collect{|ws| ws.main} end end class PushWorkspace < Workspaces def execute(*obj) irb_context.push_workspace(*obj) super end end class PopWorkspace < Workspaces def execute(*obj) irb_context.pop_workspace(*obj) super end end end end # :startdoc: