shell脚本实现校验时间格式
发布网友
发布时间:2022-04-24 18:14
我来回答
共1个回答
热心网友
时间:2023-10-30 23:10
#!/bin/bash
read -p "please enter the date: " date
if [[ $date =~ "[0-9]{2}/[0-9]{2}/[0-9]{4}" ]]
then
echo "today is:${date:0:2} month is:${date:3:2} year is:${date:6:4}"
else
echo "wrong date"
fi
我没有对日期范围做校验,你可以自己加一下。追问怎么加啊,完全不知道啊