I need to write a script to run weekly jobs on particular days of the week.
e.g., The schedule of Jobs could be as follows:
1. Job A needs to run every Monday at 10:00 AM
2. Job B needs to run every Monday at 3:00 PM
3. Job C needs to run every Tuesday at 12:00 PM
4. Job D needs to run every Thursday at 10:00 AM
and so on for few more jobs.
I cannot schedule this using Control M or Cron Tab. Is there any way I can achieve this by writing a shell script?