對用戶輸入的判斷的shell實現(xiàn)代碼
今天的案例是將 對用戶輸入的判斷的
#!/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ù)字做準(zhǔn)備
3)if validint "$1" "$2" "$3" ; then 注意 "$1" "$2" "$3"要加引號。
4)testvalue變量是為了過濾負數(shù)后測試輸入是否全為數(shù)字的。
5)感覺想得挺周全的。
相關(guān)文章
Linux Shell腳本syntax error: unexpected en
這篇文章主要介紹了Linux Shell腳本syntax error: unexpected end of file原因及解決方案,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教2024-03-03
linux?中sed命令實現(xiàn)刪除文件的任意列(操作代碼)
這篇文章主要介紹了linux中sed命令實現(xiàn)刪除文件的任意列,本文通過實例代碼給大家介紹的非常詳細,對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下2023-06-06
Shell+Curl網(wǎng)站狀態(tài)檢查腳本 抓出無法訪問的站點
這篇文章主要介紹了Shell+Curl網(wǎng)站狀態(tài)檢查腳本 抓出無法訪問的站點,需要的朋友可以參考下2015-10-10
Shell腳本中獲取命令運行結(jié)果的實現(xiàn)
本文主要介紹了Shell腳本中獲取命令運行結(jié)果的實現(xiàn),除了我們熟知的管道 | 和args,我們也可以通過獲取命令的運行結(jié)果,本文就來介紹一下,感興趣的可以了解一下2023-10-10

