SILENT KILLERPanel

Current Path: > > opt > alt > > ruby34 > share > ruby


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //opt/alt//ruby34/share/ruby

NameTypeSizeLast ModifiedActions
bigdecimal Directory - -
cgi Directory - -
did_you_mean Directory - -
digest Directory - -
erb Directory - -
error_highlight Directory - -
fiddle Directory - -
forwardable Directory - -
io Directory - -
json Directory - -
logger Directory - -
net Directory - -
objspace Directory - -
open3 Directory - -
openssl Directory - -
optparse Directory - -
prism Directory - -
psych Directory - -
random Directory - -
reline Directory - -
ripper Directory - -
ruby_vm Directory - -
set Directory - -
strscan Directory - -
syntax_suggest Directory - -
unicode_normalize Directory - -
uri Directory - -
vendor_ruby Directory - -
yaml Directory - -
English.rb File 5672 bytes May 29 2025 13:39:42.
benchmark.rb File 19112 bytes May 29 2025 13:39:42.
bundled_gems.rb File 7455 bytes May 29 2025 13:39:41.
cgi.rb File 10070 bytes May 29 2025 13:39:42.
coverage.rb File 368 bytes May 29 2025 13:39:42.
date.rb File 1193 bytes May 29 2025 13:39:41.
delegate.rb File 11956 bytes May 29 2025 13:39:39.
did_you_mean.rb File 4614 bytes May 29 2025 13:39:39.
digest.rb File 3381 bytes May 29 2025 13:39:42.
erb.rb File 14883 bytes May 29 2025 13:39:41.
error_highlight.rb File 84 bytes May 29 2025 13:39:42.
expect.rb File 2244 bytes May 29 2025 13:39:39.
fiddle.rb File 3760 bytes May 29 2025 13:39:42.
fileutils.rb File 80691 bytes May 29 2025 13:39:39.
find.rb File 2577 bytes May 29 2025 13:39:42.
forwardable.rb File 9245 bytes May 29 2025 13:39:39.
ipaddr.rb File 22937 bytes May 29 2025 13:39:39.
json.rb File 20055 bytes May 29 2025 13:39:41.
logger.rb File 23028 bytes May 29 2025 13:39:42.
mkmf.rb File 94852 bytes May 29 2025 13:39:42.
monitor.rb File 7136 bytes May 29 2025 13:39:39.
objspace.rb File 4236 bytes May 29 2025 13:39:41.
open-uri.rb File 29063 bytes May 29 2025 13:39:42.
open3.rb File 48651 bytes May 29 2025 13:39:41.
openssl.rb File 1084 bytes May 29 2025 13:39:41.
optionparser.rb File 59 bytes May 29 2025 13:39:42.
optparse.rb File 65715 bytes May 29 2025 13:39:39.
ostruct.rb File 14557 bytes May 29 2025 13:39:39.
pathname.rb File 17612 bytes May 29 2025 13:39:41.
pp.rb File 18797 bytes May 29 2025 13:39:41.
prettyprint.rb File 16310 bytes May 29 2025 13:39:41.
prism.rb File 3005 bytes May 29 2025 13:39:42.
pstore.rb File 20853 bytes May 29 2025 13:39:42.
psych.rb File 25705 bytes May 29 2025 13:39:39.
readline.rb File 215 bytes May 29 2025 13:39:42.
reline.rb File 15285 bytes May 29 2025 13:39:41.
resolv.rb File 88963 bytes May 29 2025 13:39:41.
ripper.rb File 2494 bytes May 29 2025 13:39:42.
securerandom.rb File 2332 bytes May 29 2025 13:39:39.
set.rb File 25602 bytes May 29 2025 13:39:42.
shellwords.rb File 7709 bytes May 29 2025 13:39:42.
singleton.rb File 5649 bytes May 29 2025 13:39:41.
socket.rb File 60921 bytes May 29 2025 13:39:41.
syntax_suggest.rb File 74 bytes May 29 2025 13:39:42.
tempfile.rb File 21172 bytes May 29 2025 13:39:42.
time.rb File 24535 bytes May 29 2025 13:39:41.
timeout.rb File 5856 bytes May 29 2025 13:39:42.
tmpdir.rb File 5751 bytes May 29 2025 13:39:42.
tsort.rb File 14629 bytes May 29 2025 13:39:42.
un.rb File 11436 bytes May 29 2025 13:39:42.
uri.rb File 3167 bytes May 29 2025 13:39:41.
weakref.rb File 1388 bytes May 29 2025 13:39:41.
yaml.rb File 2184 bytes May 29 2025 13:39:41.

Reading File: //opt/alt//ruby34/share/ruby/English.rb

# frozen_string_literal: true
#  Include the English library file in a Ruby script, and you can
#  reference the global variables such as <code>$_</code> using less
#  cryptic names, listed below.
#
#  Without 'English':
#
#      $\ = ' -- '
#      "waterbuffalo" =~ /buff/
#      print $', $$, "\n"
#
#  With English:
#
#      require "English"
#
#      $OUTPUT_FIELD_SEPARATOR = ' -- '
#      "waterbuffalo" =~ /buff/
#      print $POSTMATCH, $PID, "\n"
#
#  Below is a full list of descriptive aliases and their associated global
#  variable:
#
#  $ERROR_INFO::              $!
#  $ERROR_POSITION::          $@
#  $FS::                      $;
#  $FIELD_SEPARATOR::         $;
#  $OFS::                     $,
#  $OUTPUT_FIELD_SEPARATOR::  $,
#  $RS::                      $/
#  $INPUT_RECORD_SEPARATOR::  $/
#  $ORS::                     $\
#  $OUTPUT_RECORD_SEPARATOR:: $\
#  $INPUT_LINE_NUMBER::       $.
#  $NR::                      $.
#  $LAST_READ_LINE::          $_
#  $DEFAULT_OUTPUT::          $>
#  $DEFAULT_INPUT::           $<
#  $PID::                     $$
#  $PROCESS_ID::              $$
#  $CHILD_STATUS::            $?
#  $LAST_MATCH_INFO::         $~
#  $ARGV::                    $*
#  $MATCH::                   $&
#  $PREMATCH::                $`
#  $POSTMATCH::               $'
#  $LAST_PAREN_MATCH::        $+
#
module English end if false

# The exception object passed to +raise+.
alias $ERROR_INFO              $!

# The stack backtrace generated by the last
# exception. See Kernel#caller for details. Thread local.
alias $ERROR_POSITION          $@

# The default separator pattern used by String#split.  May be set from
# the command line using the <code>-F</code> flag.
alias $FS                      $;
alias $FIELD_SEPARATOR         $;

# The separator string output between the parameters to methods such
# as Kernel#print and Array#join. Defaults to +nil+, which adds no
# text.

# The separator string output between the parameters to methods such
# as Kernel#print and Array#join. Defaults to +nil+, which adds no
# text.
alias $OFS                     $,
alias $OUTPUT_FIELD_SEPARATOR  $,

# The input record separator (newline by default). This is the value
# that routines such as Kernel#gets use to determine record
# boundaries. If set to +nil+, +gets+ will read the entire file.
alias $RS                      $/
alias $INPUT_RECORD_SEPARATOR  $/

# The string appended to the output of every call to methods such as
# Kernel#print and IO#write. The default value is +nil+.
alias $ORS                     $\
alias $OUTPUT_RECORD_SEPARATOR $\

# The number of the last line read from the current input file.
alias $NR                      $.
alias $INPUT_LINE_NUMBER       $.

# The last line read by Kernel#gets or
# Kernel#readline. Many string-related functions in the
# Kernel module operate on <code>$_</code> by default. The variable is
# local to the current scope. Thread local.
alias $LAST_READ_LINE          $_

# The destination of output for Kernel#print
# and Kernel#printf. The default value is
# <code>$stdout</code>.
alias $DEFAULT_OUTPUT          $>

# An object that provides access to the concatenation
# of the contents of all the files
# given as command-line arguments, or <code>$stdin</code>
# (in the case where there are no
# arguments). <code>$<</code> supports methods similar to a
# File object:
# +inmode+, +close+,
# <code>closed?</code>, +each+,
# <code>each_byte</code>, <code>each_line</code>,
# +eof+, <code>eof?</code>, +file+,
# +filename+, +fileno+,
# +getc+, +gets+, +lineno+,
# <code>lineno=</code>, +path+,
# +pos+, <code>pos=</code>,
# +read+, +readchar+,
# +readline+, +readlines+,
# +rewind+, +seek+, +skip+,
# +tell+, <code>to_a</code>, <code>to_i</code>,
# <code>to_io</code>, <code>to_s</code>, along with the
# methods in Enumerable. The method +file+
# returns a File object for the file currently
# being read. This may change as <code>$<</code> reads
# through the files on the command line. Read only.
alias $DEFAULT_INPUT           $<

# The process number of the program being executed. Read only.
alias $PID                     $$
alias $PROCESS_ID              $$

# The exit status of the last child process to terminate. Read
# only. Thread local.
alias $CHILD_STATUS            $?

# A +MatchData+ object that encapsulates the results of a successful
# pattern match. The variables <code>$&</code>, <code>$`</code>, <code>$'</code>,
# and <code>$1</code> to <code>$9</code> are all derived from
# <code>$~</code>. Assigning to <code>$~</code> changes the values of these
# derived variables.  This variable is local to the current
# scope.
alias $LAST_MATCH_INFO         $~

# An array of strings containing the command-line
# options from the invocation of the program. Options
# used by the Ruby interpreter will have been
# removed. Read only. Also known simply as +ARGV+.
alias $ARGV                    $*

# The string matched by the last successful pattern
# match. This variable is local to the current
# scope. Read only.
alias $MATCH                   $&

# The string preceding the match in the last
# successful pattern match. This variable is local to
# the current scope. Read only.
alias $PREMATCH                $`

# The string following the match in the last
# successful pattern match. This variable is local to
# the current scope. Read only.
alias $POSTMATCH               $'

# The contents of the highest-numbered group matched in the last
# successful pattern match. Thus, in <code>"cat" =~ /(c|a)(t|z)/</code>,
# <code>$+</code> will be set to "t".  This variable is local to the
# current scope. Read only.
alias $LAST_PAREN_MATCH        $+

SILENT KILLER Tool