AXIS 200+ Users Manual Appendix G: CRON Script Command Reference
117
sleep
This command adds a pause to the CRON script execution. The
command is typically used if you want to assure that the previous
command is finished before continuing the script.
Syntax
sleep <seconds>;
Options
<seconds>
Specifies the number of seconds to wait before proceeding with
the next command in the event entry.
Example
# This command will result in a 30 seconds pause
# in the CRON script execution.
* * * * * :
sleep 30;
%