Linux velvet.gennetworks.in 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
LiteSpeed
Server IP : 161.129.70.235 & Your IP : 216.73.216.5
Domains :
Cant Read [ /etc/named.conf ]
User : virtueex
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 18:04
fork.rb
638
B
-rw-r--r--
2023-03-30 18:04
help.rb
901
B
-rw-r--r--
2023-03-30 18:04
info.rb
559
B
-rw-r--r--
2023-03-30 18:04
load.rb
1.2
KB
-rw-r--r--
2023-03-30 18:04
nop.rb
545
B
-rw-r--r--
2023-03-30 18:04
pushws.rb
677
B
-rw-r--r--
2023-03-30 18:04
subirb.rb
661
B
-rw-r--r--
2023-03-30 18:04
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/change-ws" # :stopdoc: module IRB module ExtendCommand class CurrentWorkingWorkspace < Nop def execute(*obj) irb_context.main end end class ChangeWorkspace < Nop def execute(*obj) irb_context.change_workspace(*obj) irb_context.main end end end end # :startdoc: