Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
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.1.0 /
irb /
cmd /
Delete
Unzip
Name
Size
Permission
Date
Action
chws.rb
537
B
-rw-r--r--
2022-04-12 11:11
fork.rb
642
B
-rw-r--r--
2022-04-12 11:11
help.rb
956
B
-rw-r--r--
2022-04-12 11:11
info.rb
1.07
KB
-rw-r--r--
2022-04-12 11:11
load.rb
1.2
KB
-rw-r--r--
2022-04-12 11:11
ls.rb
2.95
KB
-rw-r--r--
2022-04-12 11:11
measure.rb
1.26
KB
-rw-r--r--
2022-04-12 11:11
nop.rb
796
B
-rw-r--r--
2022-04-12 11:11
pushws.rb
677
B
-rw-r--r--
2022-04-12 11:11
show_source.rb
3.16
KB
-rw-r--r--
2022-04-12 11:11
subirb.rb
661
B
-rw-r--r--
2022-04-12 11:11
whereami.rb
362
B
-rw-r--r--
2022-04-12 11:11
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: