OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
ruby22
/
lib64
/
ruby
/
2.2.0
/
io
/
console
Server IP: 2a02:4780:11:1594:0:ef5:22d7:a
Upload:
Name
Size
Modified
Perms
Actions
📁
..
-
10/21/2025 06:55:14 AM
rwxr-xr-x
📄
size.rb
397 bytes
07/26/2023 02:43:25 PM
rw-r--r--
Delete
Editing: size.rb
Close
# fallback to console window size def IO.default_console_size [ ENV["LINES"].to_i.nonzero? || 25, ENV["COLUMNS"].to_i.nonzero? || 80, ] end begin require 'io/console' rescue LoadError class IO alias console_size default_console_size end else # returns console window size def IO.console_size console.winsize rescue NoMethodError default_console_size end end