Linux Shell脚本验证日期,考虑闰年规则

Linux Shell脚本验证日期,考虑闰年规则

在本教程中,我们将探讨如何创建一个验证日期的Shell脚本,考虑到闰年规则。我们将使用Linux操作系统和Bash Shell脚本语言来实现这个目的。Shell脚本允许我们通过编写简单高效的脚本来自动化任务和执行复杂操作。在本教程结束时,您将拥有一个能够准确验证日期并处理闰年的工作脚本。

我们将开发一个Shell脚本,提示用户以”YYYY-MM-DD”的格式输入日期,然后验证输入的日期是否有效,考虑闰年规则。我们将把问题分解为较小的步骤,并逐步构建我们的脚本,以实现所需的功能。在此过程中,我们将解释每个代码片段并提供示例,帮助您清楚理解过程。

检查年份的有效性

首先,让我们专注于验证用户输入的年份。我们将确保年份是一个四位数字,并在合理范围内。以下是实现此目的的代码片段-

#!/bin/bash

# Prompting the user to enter a date
read -p "Enter a date (YYYY-MM-DD): " input_date

# Extracting the year from the input
year={input_date:0:4}

# Checking the validity of the year
if [[ !year =~ ^[0-9]{4}]]; then
    echo "Invalid year format. Please enter a valid date."
    exit 1
fi

# Validating the range of the year
current_year=(date +%Y)
if (( year < 1900 || year > current_year )); then
    echo "Invalid year. Please enter a year between 1900 and $current_year."
    exit 1
fi

在上述代码中,我们首先使用read命令提示用户输入日期。然后,我们使用参数扩展$ {input_date:0:4}从输入中提取年份,该扩展从输入中取出前四个字符。我们使用正则表达式^[0-9]{4}$来检查年份是否为四位数。

如果年份格式无效,我们将显示错误消息并以状态码1退出脚本。另外,我们通过将其与使用date +%Y命令获得的当前年份进行比较,验证年份的范围。如果年份不在1900年到当前年份的范围内,我们将显示适当的错误消息并退出脚本。

输出

Enter a date (YYYY-MM-DD): 2024-07-15
Invalid year. Please enter a year between 1900 and 2023.

Enter a date (YYYY-MM-DD): abc-07-15
Invalid year format. Please enter a valid date.

验证月份

接下来,让我们继续验证用户输入的月份。我们将检查月份是否是一个介于01和12之间的两位数。以下是代码示例:

# Extracting the month from the input
month={input_date:5:2}

# Checking the validity of the month
if [[ !month =~ ^[0-9]{2}$ || month -lt 1 || month -gt 12 ]]; then
    echo "Invalid month. Please enter a valid date."
    exit 1
fi

在上面的代码中,我们通过使用参数扩展$ {input_date:5:2}来从输入中提取月份,它从输入的索引5开始取两个字符。然后我们使用正则表达式^[0-9]{2}$来检查月份是否为两位数。

如果月份格式无效或者月份不在01到12的范围内,我们会显示一个错误信息并退出脚本。这确保了输入的日期具有有效的月份。

输出

Enter a date (YYYY-MM-DD): 2023-15-07
Invalid month. Please enter a valid date.

Enter a date (YYYY-MM-DD): 2023-00-07
Invalid month. Please enter a valid date.

验证日期

接下来,让我们专注于验证用户输入的日期。我们将考虑每个月的天数,并考虑闰年。以下是代码片段 –

# Extracting the day from the input
day={input_date:8:2}

# Checking the validity of the day
if [[ !day =~ ^[0-9]{2}|| day -lt 1 ]]; then
    echo "Invalid day. Please enter a valid date."
    exit 1
fi

# Determining the number of days in the month
days_in_month=(cal monthyear | awk 'NF {DAYS = $NF}; END {print DAYS}')

# Handling February in leap years
if (( month == 2 && year % 4 == 0 && (year % 100 != 0 || year % 400 == 0) )); then
    days_in_month=29
fi

# Checking if the day is within the valid range
if (( day > days_in_month )); then
    echo "Invalid day. Please enter a valid date."
    exit 1
fi

在上面的代码片段中,我们使用参数扩展’${input_date:8:2}’从输入中提取天数,它从索引8开始取两个字符。我们检查天数是否为两位数且大于等于1。

为了确定月份的天数,我们使用cal命令生成指定月份和年份的日历。我们将月份和年份作为参数传递给cal命令,然后使用awk提取最后一个非空字段,该字段表示该月的天数。

接下来,我们处理闰年中二月的特殊情况。我们检查月份是否为2(month 2)且年份能被4整除但不能被100整除,除非能被400整除。如果满足这些条件,我们将days_in_month变量设为29,表示闰年的二月有29天。

最后,我们将输入的天数与计算得到的月份天数进行比较。如果天数超出有效范围,我们显示错误消息并退出脚本。

输出:

Enter a date (YYYY-MM-DD): 2023-02-30
Invalid day. Please enter a valid date.

Enter a date (YYYY-MM-DD): 2024-02-29
Entered date is valid: 2024-02-29

验证完整日期

In the last section, let's combine all the validations and check the complete date entered by the user. Here's the code snippet:


# Checking the validity of the complete date
if [[ ! input_date =~ ^[0-9]{4}-[0-9]{2}-[0-9]{2} ]]; then
    echo "Invalid date format. Please enter

 a valid date."
    exit 1
fi

# Printing the validated date
echo "Entered date is valid: $input_date"

在这段代码中,我们使用正则表达式 ^[0-9]{4}-[0-9]{2}-[0-9]{2} $来检查完整的日期是否与所需的格式匹配。如果格式无效,我们会显示一个错误消息并退出脚本。

如果日期格式有效,我们会打印一条成功消息,以及经过验证的日期。

输出

Enter a date (YYYY-MM-DD): 2023-07-15
Entered date is valid: 2023-07-15

Enter a date (YYYY-MM-DD): abc
Invalid date format. Please enter a valid date.

结论

在本教程中,我们开发了一个shell脚本来验证日期,考虑闰年规则。通过将问题分解为较小的步骤,我们能够创建一个高效的脚本,提示用户输入日期并执行各种检查以确保其有效性。Shell脚本使我们能够自动化任务和处理复杂操作,成为Linux用户的有价值工具。通过本教程获得的知识,您现在可以创建自己的shell脚本来验证日期或执行其他有用的任务。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程