Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Is not possible that there is a [tt]cron[/tt] clone instead of traditional [tt]cron[/tt] ? There are a lot of job schedulers, more efficient then [tt]cron[/tt]. For example we use fcron.adaaje said:I don't have cron installed
#!/bin/ksh
TIMES="0800 1030"
DAYS="1 2 3 4 5"
JOB="uptime"
while true
do
sleep 50 # check at least once a minute
for DAY in $DAYS
do
if [[ "$(date +%w)" -eq "$DAY" ]]
then
for TIME in $TIMES
do
if [[ "$(date +%H%M)" -eq "$TIME" ]]
then
$JOB &
# make sure we do
# not run twice
sleep 20
fi
done
fi
done
done