BSD 4_4_Lite2 development
[unix-history] / usr / share / man / cat1 / sleep.0
SLEEP(1) BSD Reference Manual SLEEP(1)
N\bNA\bAM\bME\bE
s\bsl\ble\bee\bep\bp - suspend execution for an interval of time
S\bSY\bYN\bNO\bOP\bPS\bSI\bIS\bS
s\bsl\ble\bee\bep\bp _\bs_\be_\bc_\bo_\bn_\bd_\bs
D\bDE\bES\bSC\bCR\bRI\bIP\bPT\bTI\bIO\bON\bN
The s\bsl\ble\bee\bep\bp command suspends execution for a minimum of _\bs_\be_\bc_\bo_\bn_\bd_\bs. S\bSl\ble\bee\bep\bp is
used to schedule the execution of other commands (see _\bE_\bX_\bA_\bM_\bP_\bL_\bE_\bS below).
The S\bSl\ble\bee\bep\bp utility exits with one of the following values:
0 On successful completion, or if the signal SIGALRM was received.
>0 An error occurred.
E\bEX\bXA\bAM\bMP\bPL\bLE\bES\bS
To schedule the execution of a command for _\bx number seconds later:
(sleep 1800; sh command_file >& errors)&
This incantation would wait a half hour before running the script com-
mand_file. (See the at(1) utility.)
To reiteratively run a command (with the csh(1)):
while (1)
if (! -r zzz.rawdata) then
sleep 300
else
foreach i (`ls *.rawdata`)
sleep 70
awk -f collapse_data $i >> results
end
break
endif
end
The scenario for a script such as this might be: a program currently run-
ning is taking longer than expected to process a series of files, and it
would be nice to have another program start processing the files created
by the first program as soon as it is finished (when zzz.rawdata is cre-
ated). The script checks every five minutes for the file zzz.rawdata,
when the file is found, then another portion processing is done courte-
ously by sleeping for 70 seconds in between each awk job.
S\bSE\bEE\bE A\bAL\bLS\bSO\bO
setitimer(2), alarm(3), sleep(3), at(1)
S\bST\bTA\bAN\bND\bDA\bAR\bRD\bDS\bS
The s\bsl\ble\bee\bep\bp command is expected to be IEEE Std1003.2 (``POSIX'') compati-
ble.
4.4BSD April 18, 1994 1