Instruction manual
Appendix H-The Programming Script AXIS 2400 Administration Manual
74
O
OO
Op
pp
pt
tt
ti
ii
io
oo
on
nn
ns
ss
s
-soft Reinitiates the AXIS 2400 protocols.
-hard Performs a complete reboot of the AXIS 2400.
Example
sleep
This command adds a pause to the programming script execution. The command is typically used
if you want to assure that the previous command is finished before continuing the script.
S
SS
Sy
yy
yn
nn
nt
tt
ta
aa
ax
xx
x
sleep <seconds>;
O
OO
Op
pp
pt
tt
ti
ii
io
oo
on
nn
ns
ss
s
<seconds>
Specifies the number of seconds to wait before proceeding with the next command in the
event entry.
Example
# This command will reset the AXIS 2400 hardware
# once a day.
0 0 * * * :
reset -hard;
%
# This command will result in a 30 seconds pause
# in the CRON script execution.
* * * * * :
sleep 30;
%