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