Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.217.105
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
ruby /
3.0.0 /
irb /
cmd /
Delete
Unzip
Name
Size
Permission
Date
Action
chws.rb
537
B
-rw-r--r--
2021-07-07 19:08
fork.rb
642
B
-rw-r--r--
2021-07-07 19:08
help.rb
901
B
-rw-r--r--
2021-07-07 19:08
info.rb
614
B
-rw-r--r--
2021-07-07 19:08
load.rb
1.2
KB
-rw-r--r--
2021-07-07 19:08
ls.rb
2.39
KB
-rw-r--r--
2021-07-07 19:08
measure.rb
1.04
KB
-rw-r--r--
2021-07-07 19:08
nop.rb
796
B
-rw-r--r--
2021-07-07 19:08
pushws.rb
677
B
-rw-r--r--
2021-07-07 19:08
show_source.rb
2.91
KB
-rw-r--r--
2021-07-07 19:08
subirb.rb
661
B
-rw-r--r--
2021-07-07 19:08
whereami.rb
362
B
-rw-r--r--
2021-07-07 19:08
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: