I am looking to have a script run every 5 minutes, beginning at 13:02, and another script to run every 5 minutes starting at 13:04, so the second script runs two minutes after the start of the first job. How can I accomplish this?
Use 2-59/5 * * * * for the first script and 4-59/5 * * * * for the second. The offset follows the first start, not its finish; chain with && for that.