Ubuntu - Cron - Schedule Multiple Jobs in a Single Crontab Entry

Crontab allows you to specify more than one jobs in a single entry.

All you need to do is separate the tasks using the semicolon(;) delimiter. The below crontab Linux command invokes two scripts at 8 am each day.

0 8 * * * /scripts/script.sh; /scripts/scrit2.sh