最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

對用戶輸入的判斷的shell實現(xiàn)代碼

 更新時間:2016年08月14日 11:20:21   投稿:mdxy-dxy  
今天的案例是將 對用戶輸入的判斷的shell腳本,需要的朋友可以參考下

今天的案例是將 對用戶輸入的判斷的

#!/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')" 為后面測試用戶輸入的是否全為數(shù)字做準備
3)if validint "$1" "$2" "$3" ; then 注意 "$1" "$2" "$3"要加引號。
4)testvalue變量是為了過濾負數(shù)后測試輸入是否全為數(shù)字的。
5)感覺想得挺周全的。

相關(guān)文章

最新評論

天峻县| 醴陵市| 通城县| 哈尔滨市| 高密市| 南开区| 来宾市| 霍州市| 农安县| 获嘉县| 博客| 安岳县| 策勒县| 偃师市| 洛川县| 潮州市| 尼勒克县| 大冶市| 商水县| 万载县| 遂溪县| 汝阳县| 上栗县| 嘉定区| 双江| 宁明县| 伊金霍洛旗| 类乌齐县| 兴安盟| 民勤县| 云梦县| 绥阳县| 汝州市| 都安| 十堰市| 吉隆县| 上饶市| 武强县| 新干县| 巴青县| 凌海市|