濮阳杆衣贸易有限公司

主頁(yè) > 知識(shí)庫(kù) > 對(duì)用戶輸入的判斷的shell實(shí)現(xiàn)代碼

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

熱門標(biāo)簽:德陽(yáng)400電話申請(qǐng) 天津電話外呼系統(tǒng)排名 外呼電話系統(tǒng)怎么操作 測(cè)繪地圖標(biāo)注名稱 鶴崗400電話申請(qǐng) 商機(jī)地圖標(biāo)注 智能電銷機(jī)器人有用嗎 百度地圖標(biāo)注直線距離 怎么在百度地圖標(biāo)注公司的位置

今天的案例是將 對(duì)用戶輸入的判斷的

#!/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個(gè)輸入;
2)nodigits="$(echo $testvalue | sed 's/[[:digit:]]//g')" 為后面測(cè)試用戶輸入的是否全為數(shù)字做準(zhǔn)備
3)if validint "$1" "$2" "$3" ; then 注意 "$1" "$2" "$3"要加引號(hào)。
4)testvalue變量是為了過(guò)濾負(fù)數(shù)后測(cè)試輸入是否全為數(shù)字的。
5)感覺(jué)想得挺周全的。

標(biāo)簽:武漢 自貢 優(yōu)質(zhì)小號(hào) 滁州 百色 六盤水 丹東 鎮(zhèn)江

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《對(duì)用戶輸入的判斷的shell實(shí)現(xiàn)代碼》,本文關(guān)鍵詞  對(duì),用戶,輸入,的,判斷,shell,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《對(duì)用戶輸入的判斷的shell實(shí)現(xiàn)代碼》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于對(duì)用戶輸入的判斷的shell實(shí)現(xiàn)代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    承德县| 隆林| 谢通门县| 会昌县| 会东县| 宜良县| 育儿| 德格县| 衡山县| 德安县| 高清| 桂阳县| 河间市| 县级市| 炎陵县| 平泉县| 宣恩县| 邢台市| 长乐市| 昌宁县| 五峰| 泰顺县| 金寨县| 姚安县| 杨浦区| 五常市| 拜泉县| 万安县| 邹平县| 东山县| 海盐县| 峨山| 信阳市| 绩溪县| 定兴县| 凤山市| 四川省| 和林格尔县| 巴马| 嘉义县| 古田县|