输入密码时,需要隐藏输入内容
1
read -s password
12345678
#/bin/bashecho -e "Enter password: "stty -echoread passwordstty echoechoecho Password: ${password}