我有一个 Paas cron 服务,它只运行每分钟、每小时、每天、每周。我希望我的脚本在上午 8 点、上午 9 点、上午 10 点、上午 11 点、下午 4 点和下午 5 点每 15 分钟运行一次。我怎么做。这是我不工作的 bash 脚本。
#!/bin/bash
MINUTES=`date +%M`
HOUR=`date +%H`
for j in "08" "09" "10" "11" "13" "16" "17";do
if [ "$HOUR" == "$j" ];then
for i in "00" "15" "30" "45";do
if [ "$MINUTES" == "$i" ];then
(
/usr/bin/notify-send "Script is running at "
)
fi
done
fi
done