RosettaCodeData/Task/Terminal-control-Dimensions/C-Shell/terminal-control-dimensions.csh

5 lines
129 B
Tcsh
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#!/bin/csh -f
set WIDTH=`tput cols`
set HEIGHT=`tput lines`
echo "The terminal is $WIDTH characters wide and has $HEIGHT lines."