Terminal control/Dimensions: Difference between revisions

Content added Content deleted
(Tidy up, remove non-implemented languages)
Line 1: Line 1:
{{draft task}}
{{draft task}}
Determine the height and width of the terminal, and store this information into variables for subsequent use.
Determine the height and width of the terminal, and store this information into variables for subsequent use.

=={{header|AWK}}==

=={{header|BASIC}}==

=={{header|Batch File}}==

=={{header|PureBasic}}==


=={{header|UNIX Shell}}==
=={{header|UNIX Shell}}==
{{works with|Bourne Shell}}
{{works with|Bourne Shell}}


<lang bash>
<lang bash>#!/bin/bash
WIDTH=`tput cols`
#!/bin/sh
WIDTH=`tput cols`
HEIGHT=`tput lines`
echo "The terminal is $WIDTH characters wide and has $HEIGHT lines"</lang>
HEIGHT=`tput lines`
echo "The terminal is $WIDTH characters wide and has $HEIGHT lines"
</lang>