shell脚本实现输入密码显示星号
read -p "请输入使用者都名称:" USERecho -e "请输入使用者密码: c"while : ;dochar=` #这里是反引号,tab键上面那个stty cbreak -echodd if=/dev/tty bs=1 count=1 2>/dev/nullstty -cbreak echo` #这里是反引号,tab键上面那个if [ "$char" = "" ];thenecho #这里的echo只是为换行breakfiPASS="$...