Is this the correct way for setting a cron job to run every 3 hours? After setting it this way, cron is executing the command every minute.

3 Answers
Change Minute to be 0. That's it :)
Note: you can check your "crons" in
1Change Minute parameter to 0.
You can set the cron for every three hours as:
0 */3 * * * your command here ..
0The unix setup should be like the following:
0 */3 * * * sh cron/update_old_citations.sh