快速业务通道

读书笔记之101个脚本之No.4

作者 佚名技术 来源 Linux系统 浏览 发布时间 2012-03-31

今天的案例是将 对用户输入的判断的

The Code

#!/bin/sh

# validint -- Validates integer input, allowing negative ints too.



function validint

{

  # Validate first field. Then test against min value $2 and/or

  # max value $3 if they are supplied. If they are not supplied, skip these tests.



  number="$1";      min="$2";      max="$3"



  if [ -z $number ] ; then

    echo "You didn''t enter anything. Unacceptable." >&2 ; return 1

  fi



  if [ "${number%${number#?}}" = "-" ] ; then  # is first char a ''-'' sign?

testvalue="${number#?}"     # all but first character

  else

    testvalue="$number"

  fi



  nodigits="$(echo $testvalue | sed ''s/[[:digit:]]//g'')"



  if [ ! -z $nodigits ] ; then

    echo "Invalid number format! Only digits, no commas, spaces, etc." >&2

    return 1

  fi



  if [ ! -z $min ] ; then

    if [ "$number" -lt "$min" ] ; then

       echo "Your value is too small: smallest acceptable value is $min" >&2

       return 1

    fi

  fi

  if [ ! -z $max ] ; then

     if [ "$number" -gt "$max" ] ; then

       echo "Your value is too big: largest acceptable value is $max" >&2

       return 1

     fi

  fi

  return 0

}





if validint "$1" "$2" "$3" ; then

  echo "That input is a valid integer value within your constraints"

fi







解析脚本:

1) number="$1";  min="$2"; max="$3"  指用户的3个输入;

2)nodigits="$(echo $testvalue | sed ''s/[[:digit:]]//g'')" 为后面测试用户输入的是否全为数字做准备

3)if validint "$1" "$2" "$3" ; then  注意 "$1" "$2" "$3"要加引号.

4)testvalue变量是为了过滤负数后测试输入是否全为数字的.

5)感觉想得挺周全的.









本文出自 “你就当我是浮夸吧” 博客,请务必保留此出处http://2804976.blog.51cto.com/2794976/591306

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号