码迷,mamicode.com
首页 > 系统相关 > 详细

shell if 多条件判断 时间大小比较

时间:2015-12-11 13:02:14      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:

#!/bin/bash
time=`date +%H:%M:%S`
echo $time
if [[ "$time" > "00:00:01" ]] && [[ "$time" < "11:30:00" ]]
then
echo "当前时间还没到中午"
else
echo "已过中午,请休息"
fi

shell if 多条件判断 时间大小比较

标签:

原文地址:http://www.cnblogs.com/genghaihua/p/5038554.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!