Issue
How to configure a cron job to run every night at 2:30? I know how to make it run at 2, but not 2:30.
id='dv4'>
Solution
crontab -e
add:
30 2 * * * /your/command
Answered By - JoG Answer Checked By - Marie Seifert (WPSolving Admin)