2

我想知道从终端读取日期并使用 shell 脚本与当前日期进行比较的适当方式,

我有以下脚本,

a=`date +%Y-%m-%d`
while [ 1 ] ; do
        echo "Enter Date"
    read todate
    if [ $todate < $a ];then
        break;
    fi
    echo "todate greater than curDate" 
done 

它没有按预期运行。请帮我。

更新

这是我的最终版本,

#! /bin/bash
DATE=$(date '+%s')
while [ 1 ] ; do
        echo "Enter Date[DD MM YYYY]:"    
    read D M Y
    THIS=$(date -d "$Y-$M-$D" '+%s')

    if (( THIS < DATE )) ; then
        break
    fi
done

感谢大家!

4

3 回答 3

4

来自高级 Bash 脚本指南:

7.3. 其他比较运算符

...

字符串比较

...

<
    is less than, in ASCII alphabetical order

    if [[ "$a" < "$b" ]]

    if [ "$a" \< "$b" ]

    Note that the "<" needs to be escaped within a [ ] construct.

所以,你的

   if [ $todate < $a ];then

变成

if [ $todate \< $a ];then

或者

if [[ $todate < $a ]];then
于 2013-01-24T13:09:07.690 回答
2

日期有+%s格式。

 %s     seconds since 1970-01-01 00:00:00 UTC

您以秒为单位保存当前日期。然后将用户输入日期也转换为秒。所以你可以比较。

于 2013-01-24T12:59:33.963 回答
0

这是解决方案:

在这个解决方案中,我将日期转换为单个整数,很明显更大的日期总是比当前日期更大的整数

一个=date +%Y%m%d

而 [ 1 ] ; 做

echo "输入日期" 读取今天 echo "$todate" > temp

for i in 1 2 3
    do 
      y=`cut -d- -f$i temp`
      x=$x$y
    done 
if [ $x -lt $a ];then
    exit;
fi
echo "todate greater than curDate" 

完毕

于 2013-01-24T13:55:31.550 回答