linux 脚本

1、获取终端的行数和列数

tput cols   

tput lines

打印终端名

tput longname

设置终端背景色

tput setb no

tput setb 1

***********

tput setb 7

设置下划线的起止

tput smul

tput rmul

输入密码时不显示密码使用stty -echo 来实现,stty echo 显示密码

#!/bin/bash
echo -e "Enter passwd:"
#stty -echo
stty echo
read passwoord
stty echo
echo
echo Password read.

 

 

你可能感兴趣的:(linux 脚本)