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

As a simple example, I want to write a CLI script which can print '=' across the entire width of the terminal window.

#!/usr/bin/env php
<?php
echo str_repeat('=', ???);

or

#!/usr/bin/env python
print '=' * ???

or

#!/usr/bin/env bash
x=0
while [ $x -lt ??? ]; do echo -n '='; let x=$x+1 done; echo
share|improve this question
This belongs on Superuser or Unix&Linux – gerrit Oct 30 '12 at 16:44

5 Answers

up vote 32 down vote accepted

tput can tell you columns. I'm not sure about height, though.
tput cols man page.

share|improve this answer
8  
'tput lines' seems to work. – too much php Nov 4 '08 at 23:43
2  
echo -e "lines\ncols"|tput -S to get both the lines and cols see: linux.about.com/library/cmd/blcmdl1_tput.htm – nickl- Jan 26 at 3:49

In bash, the $LINES and $COLUMNS environmental variables should be able to do the trick. The will be set automatically upon any change in the terminal size. (i.e. the SIGWINCH signal)

share|improve this answer
However, these environment variables are only available to bash, and not to any programs that run inside bash (like perl, python, ruby). – Br.Bill Feb 29 '12 at 23:20
yes = | head -n$(($LINES * $COLUMNS)) | tr -d '\n' – donatJ Mar 22 at 20:12
yes = | head -n$(($(tput lines) * $COLUMNS)) | tr -d '\n'
share|improve this answer
Not a direct answer to the question, but a great demo script. – Chris Page Sep 28 '11 at 7:46

To do this in Windows CLI environment, the best way I can find is to use the mode command and parse the output.

function getTerminalSizeOnWindows() {
  $output = array();
  $size = array('width'=>0,'height'=>0);
  exec('mode',$output);
  foreach($output as $line) {
    $matches = array();
    $w = preg_match('/^\s*columns\:?\s*(\d+)\s*$/i',$line,$matches);
    if($w) {
      $size['width'] = intval($matches[1]);
    } else {
      $h = preg_match('/^\s*lines\:?\s*(\d+)\s*$/i',$line,$matches);
      if($h) {
        $size['height'] = intval($matches[1]);
      }
    }
    if($size['width'] AND $size['height']) {
      break;
    }
  }
  return $size;
}

I hope it's useful!

NOTE: The height returned is the number of lines in the buffer, it is not the number of lines that are visible within the window. Any better options out there?

share|improve this answer

On POSIX, ultimately you want to be invoking the TIOCGWINSZ (Get WINdow SiZe) ioctl() call. Most languages ought to have some sort of wrapper for that. E.g in Perl you can use Term::Size:

use Term::Size qw( chars );

my ( $columns, $rows ) = chars \*STDOUT;
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.