1002-获取终端信息

1、介绍
当前终端的相关信息,如行数、列数、光标、位置、密码等。
2、行数和列数
tput cols
tput lines
3、打印当前终端名
tput longname
4、将光标移动到坐标(100,100)处
tput cup 100 100
5、设置终端背景色
tput setb n (n为0到7之间的值)
6、设置文本前景色
tput setf n
7、设置文本格式为粗体
tput bold
8、设置下划线的起目止
tput smu1
tput rmu1
9、删除从当前光标位置到行尾的所有内容
tput ed
10、在输入密码时,不应该显示输入内容。如下面的例子中,我们将看到如何使用stty来实现这一要求
#!/bin/sh
#Filename: password.sh
echo -e "Enter password: "
stty -echo
read password
stty echo
echo
echo Password read.

你可能感兴趣的:(bash)