From: James Edward Gray II Date: 2007-08-08T03:20:28+09:00 Subject: Need Solaris Help I'm told the following bit of code doesn't work on Solaris: # A Unix savvy method to fetch the console columns, and rows. def terminal_size `stty size`.split.map { |x| x.to_i }.reverse end HighLine makes use of this method as does Capistrano by extension, so we need find a portable solution. Can anyone provide an equivalent technique that works on Solaris? Thanks. James Edward Gray II