這篇文章將為大家詳細(xì)講解有關(guān)shell腳本中怎么判斷輸入的日期是否正確,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
創(chuàng)新互聯(lián)公司主要業(yè)務(wù)有網(wǎng)站營(yíng)銷(xiāo)策劃、網(wǎng)站建設(shè)、成都做網(wǎng)站、微信公眾號(hào)開(kāi)發(fā)、微信小程序、HTML5建站、程序開(kāi)發(fā)等業(yè)務(wù)。一次合作終身朋友,是我們奉行的宗旨;我們不僅僅把客戶當(dāng)客戶,還把客戶視為我們的合作伙伴,在開(kāi)展業(yè)務(wù)的過(guò)程中,公司還積累了豐富的行業(yè)經(jīng)驗(yàn)、成都全網(wǎng)營(yíng)銷(xiāo)資源和合作伙伴關(guān)系資源,并逐漸建立起規(guī)范的客戶服務(wù)和保障體系。
下面是代碼
#!/bin/sh # valid-date -- Validates a date, taking into account leap year rules. exceedsDaysInMonth() { case $(echo $1|tr '[:upper:]' '[:lower:]') in jan* ) days=31 ;; feb* ) days=28 ;; mar* ) days=31 ;; apr* ) days=30 ;; may* ) days=31 ;; jun* ) days=30 ;; jul* ) days=31 ;; aug* ) days=31 ;; sep* ) days=30 ;; oct* ) days=31 ;; nov* ) days=30 ;; dec* ) days=31 ;; * ) echo "$0: Unknown month name $1" >&2; exit 1 esac if [ $2 -lt 1 -o $2 -gt $days ] ; then return 1 else return 0 # the day number is valid fi } isLeapYear() { year=$1 if [ "$((year % 4))" -ne 0 ] ; then return 1 # nope, not a leap year elif [ "$((year % 400))" -eq 0 ] ; then return 0 # yes, it's a leap year elif [ "$((year % 100))" -eq 0 ] ; then return 1 else return 0 fi } ## Begin main script if [ $# -ne 3 ] ; then echo "Usage: $0 month day year" >&2 echo "Typical input formats are 8 3 2002" >&2 exit 1 fi # Normalize date and split back out returned values if [ $? -eq 1 ] ; then exit 1 # error condition already reported by normdate fi monthnoToName() { # Sets the variable 'month' to the appropriate value case $1 in 01|1 ) monthd="Jan" ;; 02|2 ) monthd="Feb" ;; 03|3 ) monthd="Mar" ;; 04|4 ) monthd="Apr" ;; 05|5 ) monthd="May" ;; 06|6 ) monthd="Jun" ;; 07|7 ) monthd="Jul" ;; 08|8 ) monthd="Aug" ;; 09|9 ) monthd="Sep" ;; 10) monthd="Oct" ;; 11) monthd="Nov" ;; 12) monthd="Dec" ;; * ) echo "$0: Unknown numeric month value $1" >&2; exit 1 esac return 0 } monthnoToName $1 month="$monthd" day="$2" year="$3" if ! exceedsDaysInMonth $month "$2" ; then if [ "$month" = "Feb" -a "$2" -eq "29" ] ; then if ! isLeapYear $3 ; then echo "$0: $3 is not a leap year, so Feb doesn't have 29 days" >&2 exit 1 fi else echo "$0: bad day value: $month doesn't have $2 days" >&2 exit 1 fi fi echo "Valid date: $newdate" exit 0
分析:
1)首先判斷用戶輸入的參數(shù)個(gè)數(shù)是否正確,接著case $1 in 語(yǔ)句判斷月份是否合理。
2)monthnoToName 函數(shù)之前出現(xiàn)在我們之前的第03個(gè)腳本案例中,用來(lái)轉(zhuǎn)換輸入的數(shù)字日期為字符串。
3) exceedsDaysInMonth 用來(lái)判斷天數(shù)是否超過(guò)對(duì)應(yīng)月的較大天數(shù),緊跟著 if [ "$month" = "Feb" -a "$2" -eq "29" ] ; then if ! isLeapYear $3 ; then 用來(lái)判斷閏年2月的特殊情況
4)總體的感覺(jué)是腳本還是很緊湊的,特別是在判斷閏年與2月的關(guān)系的那段代碼,有點(diǎn)意思。
關(guān)于shell腳本中怎么判斷輸入的日期是否正確就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。