主頁 > 知識庫 > 判斷輸入的日期是否正確的shell腳本

判斷輸入的日期是否正確的shell腳本

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

今兒個講得是判斷輸入的日期是否正確,有利用到我們之前03這個例子中的函數(shù)
下面是代碼

#!/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ù)個數(shù)是否正確,接著case $1 in 語句判斷月份是否合理。
2)monthnoToName 函數(shù)之前出現(xiàn)在我們之前的第03個腳本案例中,用來轉(zhuǎn)換輸入的數(shù)字日期為字符串。
3) exceedsDaysInMonth 用來判斷天數(shù)是否超過對應(yīng)月的最大天數(shù),緊跟著 if [ "$month" = "Feb" -a "$2" -eq "29" ] ; then if ! isLeapYear $3 ; then 用來判斷閏年2月的特殊情況
4)總體的感覺是腳本還是很緊湊的,特別是在判斷閏年與2月的關(guān)系的那段代碼,有點(diǎn)意思。

您可能感興趣的文章:
  • PowerShell中捕獲異常時的行號和列號的方法
  • shell腳本echo輸出不換行功能增強(qiáng)實(shí)例
  • Linux Shell 腳本編程入門教程
  • 使用Shell 腳本實(shí)現(xiàn)每隔100行插入一條記錄且記錄第一列包含行號其他列不變

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

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《判斷輸入的日期是否正確的shell腳本》,本文關(guān)鍵詞  判斷,輸入,的,日期,是否,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《判斷輸入的日期是否正確的shell腳本》相關(guān)的同類信息!
  • 本頁收集關(guān)于判斷輸入的日期是否正確的shell腳本的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章