验证用户输入的参数合法性的shell脚本_linuxshell教程-查字典教程网
验证用户输入的参数合法性的shell脚本
验证用户输入的参数合法性的shell脚本
发布时间:2016-12-28 来源:查字典编辑
摘要:今天这个例子是用来验证用户输入的参数的合法性的,程序并不复杂,如下所示:#!/bin/sh#validAlphaNum-Ensurestha...

今天这个例子是 用来验证用户输入的参数的合法性的,程序并不复杂,如下所示:

#!/bin/sh # validAlphaNum - Ensures that input consists only of alphabetical # and numeric characters. validAlphaNum() { # Validate arg: returns 0 if all upper+lower+digits, 1 otherwise # Remove all unacceptable chars compressed="$(echo $1 | sed -e 's/[^[:alnum:]]//g')" if [ "$compressed" != "$input" ] ; then return 1 else return 0 fi } # Sample usage of this function in a script echo -n "Enter input: " read input if ! validAlphaNum "$input" ; then #// 这个有点巧妙,就是如果函数的返回值为1的话,则执行 echo "Your input must consist of only letters and numbers." >&2 exit 1 else echo "Input is valid." fi exit 0

就像上面所说这脚本流程和思路还是很简明的,就是讲你的输入用sed过滤后于原输入相比较,不相等则输入不合法。

值得注意的地方有

1) sed -e 's/[^ [:alnum:]]//g' ([:alnum:]是 大小写字母及数字的意思,这里sed的作用是将非大小写字母及数字过滤掉。

2) if ! validAlphaNum "$input" $input作为 函数的参数被调用,注意这里加了引号。

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新linuxshell学习
    热门linuxshell学习
    脚本专栏子分类