1.1shell基本实践——密码输入三次错误则结束
Posted 郭大侠
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1.1shell基本实践——密码输入三次错误则结束相关的知识,希望对你有一定的参考价值。
function checkPwd() { pwdCount=1 read -s -p "Please input the password: " thePwd clear while true; do if [ "${pwdCount}" -ge 3 ]; then echo "bye" exit 1 fi if [ "$thePwd" = "123456" ]; then break else echo "Error: The password is error." echo read -s -p "Please input the password: " thePwd clear fi pwdCount=`expr ${pwdCount} + 1` done }
以上是关于1.1shell基本实践——密码输入三次错误则结束的主要内容,如果未能解决你的问题,请参考以下文章
JAVA:编写代码模拟三次密码输入的场景。 最多能输入三次密码,密码正确,提示“登录成功”,密码错误, 可以重新输 入,最多输入三次。三次均错,则提示退出程序