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 /
Delete
Unzip
Name
Size
Permission
Date
Action
cmd
[ DIR ]
drwxr-xr-x
2026-07-06 06:50
ext
[ DIR ]
drwxr-xr-x
2026-07-06 06:50
lc
[ DIR ]
drwxr-xr-x
2026-07-06 06:50
color.rb
8.47
KB
-rw-r--r--
2021-07-07 19:08
color_printer.rb
995
B
-rw-r--r--
2021-07-07 19:08
completion.rb
11.43
KB
-rw-r--r--
2021-07-07 19:08
context.rb
14.99
KB
-rw-r--r--
2021-07-07 19:08
easter-egg.rb
3.64
KB
-rw-r--r--
2021-07-07 19:08
extend-command.rb
10.67
KB
-rw-r--r--
2021-07-07 19:08
frame.rb
1.97
KB
-rw-r--r--
2021-07-07 19:08
help.rb
701
B
-rw-r--r--
2021-07-07 19:08
init.rb
10.61
KB
-rw-r--r--
2021-07-07 19:08
input-method.rb
9.49
KB
-rw-r--r--
2021-07-07 19:08
inspector.rb
3.85
KB
-rw-r--r--
2021-07-07 19:08
locale.rb
4.81
KB
-rw-r--r--
2021-07-07 19:08
magic-file.rb
928
B
-rw-r--r--
2021-07-07 19:08
notifier.rb
7.24
KB
-rw-r--r--
2021-07-07 19:08
output-method.rb
2.44
KB
-rw-r--r--
2021-07-07 19:08
ruby-lex.rb
23.02
KB
-rw-r--r--
2021-07-07 19:08
ruby_logo.aa
2.32
KB
-rw-r--r--
2021-07-07 19:08
src_encoding.rb
147
B
-rw-r--r--
2021-07-07 19:08
version.rb
296
B
-rw-r--r--
2021-07-07 19:08
workspace.rb
5.41
KB
-rw-r--r--
2021-07-07 19:08
ws-for-case-2.rb
218
B
-rw-r--r--
2021-07-07 19:08
xmp.rb
4.03
KB
-rw-r--r--
2021-07-07 19:08
Save
Rename
# frozen_string_literal: false # # irb/help.rb - print usage module # $Release Version: 0.9.6$ # $Revision$ # by Keiju ISHITSUKA(keiju@ishitsuka.com) # # -- # # # require_relative 'magic-file' module IRB # Outputs the irb help message, see IRB@Command+line+options. def IRB.print_usage lc = IRB.conf[:LC_MESSAGES] path = lc.find("irb/help-message") space_line = false IRB::MagicFile.open(path){|f| f.each_line do |l| if /^\s*$/ =~ l lc.puts l unless space_line space_line = true next end space_line = false l.sub!(/#.*$/, "") next if /^\s*$/ =~ l lc.puts l end } end end