Terminal control/Dimensions: Difference between revisions

Tidy up, remove non-implemented languages
(Tidy up, remove non-implemented languages)
Line 1:
{{draft task}}
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}}==
{{works with|Bourne Shell}}
 
<lang bash>#!/bin/bash
WIDTH=`tput cols`
#!/bin/sh
WIDTHHEIGHT=`tput colslines`
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>
Anonymous user