Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Have you ever noticed that if you run rake -T in rails the list of rake descriptions are truncated by the width of the terminal window. So there should be a way to get it in Ruby and Use it.

I'm printing some Ascii-art on the screen and I don't want it to be broken. therefore I need to find out the width of terminal at run time some how.

Any Idea how to do that?

share|improve this question

5 Answers

up vote 16 down vote accepted

I've found that on Ubuntu, none of the other methods specified here (ENV['COLUMNS'], tput columns or hirb) give the correct result if the terminal is resized while the Ruby application is running. This is not an issue for scripts, but it is an issue for interactive consoles, such as irb.

The ruby-terminfo gem is the best solution I've find so far to give the correct dimensions after a resize, but it requires that you install an additional gem, and is unix-specific.

The gem's usage is simple:

require 'terminfo'
p TermInfo.screen_size        # [lines, columns]

TermInfo internally uses TIOCGWINSZ ioctl for the screen size.

Alternatively, as mentioned by user83510, highline's system_extensions also works:

require 'highline'
HighLine::SystemExtensions.terminal_size # [columns, lines]

Interally, highline uses stty size on Unix, and other implementations for ncurses and Windows.

To listen for changes to the terminal size (instead of polling), we can trap the SIGWINCH signal:

require 'terminfo'
Signal.trap('SIGWINCH', proc { puts TermInfo.screen_size.inspect })

This is specifically useful for applications using Readline, such as irb:

Signal.trap('SIGWINCH', proc { Readline.set_screen_size(TermInfo.screen_size[0], TermInfo.screen_size[1]) })
share|improve this answer

Their is a common unix command:

tput cols

Which return the width of the terminal.

share|improve this answer
Thanks, this one is working. – Allan Bargi Jan 15 '10 at 1:54
`/usr/bin/env tput cols`.to_i works great for me. – donatJ Aug 22 '12 at 19:08

If you want your code to work across platforms, here's what I use: http://github.com/cldwalker/hirb/blob/master/lib/hirb/util.rb#L61-71

Also check out the system_extensions file in highline

share|improve this answer
Thanks for giving me exactly what I wanted! BTW, Gabriel, I'm using your hirb gem in my rails console and I'm just loving it. thanks man. – Allan Bargi Jan 16 '10 at 1:39
Best solution here! BEST! – lzap Jul 19 '12 at 15:47

ENV['COLUMNS'] will give you the number of columns in the terminal.

share|improve this answer
I tried it in IRB and inspected the ENV hash but couldn't find the columns key. – Allan Bargi Jan 15 '10 at 1:54
This trick must be specific to some shells or operating systems. It didn't work under Bash on Debian, either. – Wayne Conrad Jan 15 '10 at 2:31
Interesting, works on OSX at least. – Ethan Gunderson Jan 15 '10 at 5:10
1  
Only works on OSX using bash, not tcsh. – mark4o Jan 15 '10 at 5:33
1  
Doesn't work for me on OS X 10.6.6, bash and system's Ruby. – Koraktor Jan 29 '11 at 20:04
show 4 more comments

I'm a bit late but in rake tasks I do the following: Rake.application.terminal_width

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.