對(duì)用戶(hù)輸入的判斷的shell實(shí)現(xiàn)代碼
今天的案例是將 對(duì)用戶(hù)輸入的判斷的
#!/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" 指用戶(hù)的3個(gè)輸入;
2)nodigits="$(echo $testvalue | sed 's/[[:digit:]]//g')" 為后面測(cè)試用戶(hù)輸入的是否全為數(shù)字做準(zhǔn)備
3)if validint "$1" "$2" "$3" ; then 注意 "$1" "$2" "$3"要加引號(hào)。
4)testvalue變量是為了過(guò)濾負(fù)數(shù)后測(cè)試輸入是否全為數(shù)字的。
5)感覺(jué)想得挺周全的。
相關(guān)文章
Linux 中shell腳本設(shè)置開(kāi)頭固定格式的實(shí)現(xiàn)方法
這篇文章主要介紹了Linux 中shell腳本設(shè)置開(kāi)頭固定格式的實(shí)現(xiàn)方法,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2020-10-10關(guān)于Linux反空閑設(shè)置的兩種方法總結(jié)
下面小編就為大家?guī)?lái)一篇關(guān)于Linux反空閑設(shè)置的兩種方法總結(jié)。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2017-03-03Shell中關(guān)于處理方法返回值問(wèn)題詳解
最近工作接觸到了一些Linux上面的文本處理,數(shù)據(jù)量還是蠻大的,不可避免的學(xué)期了shell,awk等腳本語(yǔ)言。下面這篇文章主要給大家介紹了關(guān)于Shell中關(guān)于處理方法返回值問(wèn)題的相關(guān)資料,需要的朋友可以參考借鑒,下面來(lái)一起看看吧。2017-12-12shell實(shí)現(xiàn)圖書(shū)管理系統(tǒng)
這篇文章主要介紹了shell實(shí)現(xiàn)圖書(shū)管理系統(tǒng),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2018-01-01