预备知识
tput和stty是两款终端处理工具。
实战演练
tput
获取终端的行数和列数
[root@shaofeng ~]# tput cols
181
[root@shaofeng ~]# tput lines
24
打印当前终端名
[root@shaofeng ~]# tput longname
VT 100/ANSI X3.64 virtual terminal
将光标移动到坐标(100,100)处
[root@shaofeng ~]# tput cup 100 100
stty
不显示内容输入或显示输入
[root@shaofeng ~]# stty -echo
[root@shaofeng ~]# stty echo