标签: 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
如何达到预期效果?