/opt/cpanel/ea-ruby27/root/usr/share/ruby/ruby-2.7.8/irb
NameSizeModeActions
cmd/-0755rm
ext/-0755rm
lc/-0755rm
color.rb79250644editdlrm
completion.rb96890644editdlrm
context.rb156830644editdlrm
easter-egg.rb36960644editdlrm
extend-command.rb103690644editdlrm
frame.rb20200644editdlrm
help.rb7010644editdlrm
init.rb88030644editdlrm
input-method.rb91760644editdlrm
inspector.rb40090644editdlrm
locale.rb49290644editdlrm
magic-file.rb9280644editdlrm
notifier.rb74090644editdlrm
output-method.rb24970644editdlrm
ruby-lex.rb169950644editdlrm
ruby_logo.aa23770644editdlrm
src_encoding.rb1470644editdlrm
version.rb2960644editdlrm
workspace.rb53420644editdlrm
ws-for-case-2.rb2180644editdlrm
xmp.rb41220644editdlrm
Edit: /opt/cpanel/ea-ruby27/root/usr/share/ruby/ruby-2.7.8/irb/help.rb (701B)
# 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