Looking for some help or advice please.
I have a series of Perl scripts which I need to run in a specific order, one after the other, every 10 minutes (forever).
For the sake of ease, let's say they're called:
- script1.pl
- script2.pl
- script3.pl
- script4.pl
- script5.pl
I tried creating a single Perl script which had a simple 'do' command for each, and I added this to crontab but I ran in to problems with various declaration issues and I started getting a bit out of my depth at that point

Ideally, I'd have just one crontab job, running every 10mins, and that one cron job would then do something to call or run each of the perl scripts in order.
Am I missing something really obvious?
Any suggestions on how best to do this?
Thanks!