Schedule multiple bash script with cron

A simple scheduler written in bash to postpone script execution

1 minute read

In several occasions you may need to postpone the execution of some web requests, for performance reasons, timelines in response or resource consumption. In few PHP projects I found very useful the script below. It uses a scripts directory to read all the sh files from. Each file in the scripts directory gets moved to a running directory before execution. At the end of the execution it checks the return value and based on the result moves the sh file to the completed directory or the failed directory. I usually configure cron to schedule this script at intervals or during low trafic hours.

comments powered by Disqus