全部博文(135)
分类:
2011-08-11 15:20:59
shell脚本中如何接收不回显的字符(口令输入)
2009年9月1日
17:28
shell脚本中如何接收不回显的字符(对口令输入有用)?
[code]
# save the current stty settings
SAVEDSTTY=`stty -g`
# hide the characters typed in
stty -echo
echo "Enter your password:"
read PASSWORD
# back on again
stty $SAVEDSTTY
[/code]
Pasted from <>