我想在其他cron之後設置cron運行。例如:Cron A在01:00 PM完成,Cron B將在01:01 PM開始。問題是我不知道cron A何時完成。Cron在其他cron之後運行
我檢查了crontab語法。它沒有爲此提供任何參數。
我的實際情況是:
# This cron must run first.
? ? * * * /usr/local/bin/php -f /path/select_and_print_to_log_file.php
# two these crons runs at the same time.
0 13 * * * /usr/local/bin/php -f /path/update_user.php
0 13 * * * /usr/local/bin/php -f /path/update_image.php
# This cron runs right after two above cron completes.
? ? * * * /usr/local/bin/php -f /path/select_and_print_to_log_file.php