I am trying to add a crontab entry to execute a script every 30 minutes, on the hour and 30 minutes past the hour or something similar. How can I do this?
Use 0,30 * * * * to run on the hour and at half past (48 runs a day), or 30 * * * * for half past only (24 runs). Cron matches clock minutes, not elapsed time.
