gpt4 book ai didi

bash - Bash shell 中的正则表达式密码验证

转载 作者:行者123 更新时间:2023-11-29 09:26:19 25 4
gpt4 key购买 nike

我在 Bash Shell 脚本 中使用正则表达式。我正在使用以下正则表达式代码来检查密码标准:密码应至少包含 6 个字符,至少包含一位数字和至少一个大写字母。我在 Regex 验证工具中进行了验证,我形成的 Regex 工作正常。但是,它在 Bash Shell 脚本中失败了。请提供您的想法。

echo "Please enter password for User to be created in OIM: "
echo "******Please Note: Password should be at least 6 characters long with one digit and one Upper case Alphabet******"
read user_passwd
regex="^(?=.*[A-Z])(?=.*[a-z])(?=.*\d)\S{6,}$"
echo $user_passwd
echo $regex
if [[ $user_passwd =~ $regex ]]; then
echolog "Password Matches the criteria"
else
echo "Password criteria: Password should be at least 6 characters long with one digit and one Upper case Alphabet"
echo "Password does not Match the criteria, exiting..."
exit
fi

最佳答案

BASH 正则表达式引擎不支持您的正则表达式中的环视。

您可以使用以下 shell glob 检查来确保密码符合您的条件:

[[ ${#s} -ge 6 && "$s" == *[A-Z]* && "$s" == *[a-z]* && "$s" == *[0-9]* ]]

它将确保输入字符串 $s 满足所有这些条件:

  • 至少 6 个字符长
  • 至少有一位数
  • 至少有一个大写字母
  • 至少有一个小写字母

关于bash - Bash shell 中的正则表达式密码验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20845497/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com