vote up 1 vote down star
1

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
flag

65% accept rate

3 Answers

vote up 2 vote down check

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

link|flag
'tput lines' seems to work. – too much php Nov 4 '08 at 23:43
vote up 0 vote down
yes = | head -n$(($(tput lines) * $COLUMNS)) | tr -d '\n'
link|flag
vote up 0 vote down

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)

link|flag

Your Answer

Get an OpenID
or

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