如何在shell中比较两个日期?

时间:2017-03-08 19:47:55

标签: shell if-statement command-line-interface unix-timestamp

以下是我想如何使用它的示例,尽管它不能按原样运行。我想只使用这个特定的时间戳。

todate=2017-03-08T19:41:26Z
cond=2017-01-19T19:35:07.000Z
daysdiff=$($todate - $cond)
if [ $daysdiff -gt 5 ];
then
    break
fi                           

如何达到预期效果?

0 个答案:

没有答案