I have crontab scripts that run every other hour
2 */2 * * * cd /home/myuser/scripts && ./script.sh
4 */2 * * * cd /home/myuser/scripts && ./script2.sh
6 */2 * * * cd /home/myuser/scripts && ./script3.sh
8 */2 * * * cd /home/myuser/scripts && ./script4.sh
...
I would like to add more scripts that run on every other hour, but not the hours that the above scripts run on. So that the above scripts all run on their respective hour/minutes lets say on 1PM, 3PM ... and my new scripts run on 2PM, 4PM ...