5 lines
117 B
Bash
5 lines
117 B
Bash
|
|
#!/bin/sh
|
||
|
|
WIDTH=`tput cols`
|
||
|
|
HEIGHT=`tput lines`
|
||
|
|
echo "The terminal is $WIDTH characters wide and has $HEIGHT lines."
|