分単位、時間単位、日単位、週単位でのみ実行される 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