Improve the process for GNU tools
[minix3.git] / minix / commands / at / at.1
bloba0906fa40e9e3fc79ef5ba5224890debb27909ac
1 .TH AT 1
2 .SH NAME
3 at \- execute commands at a later time
4 .SH SYNOPSIS
5 \fBat \fItime\fR [\fImonth day\fR] [\fIfile\fR]\fR
6 .br
7 .de FL
8 .TP
9 \\fB\\$1\\fR
10 \\$2
12 .de EX
13 .TP 20
14 \\fB\\$1\\fR
15 # \\$2
17 .SH EXAMPLES
18 .TP 20
19 .B at 2315 Jan 31 myfile
20 # Myfile executed Jan 31 at 11:15 pm
21 .TP 20
22 .B at 0900
23 # Job input read from \fIstdin\fR
24 .TP 20
25 .B at 0711 4 29
26 # Read from \fIstdin\fR, exec on April 29
27 .SH DESCRIPTION
28 .PP
29 \fBAt\fR prepares a file to be executed later at the specified time by 
30 creating a special entry in \fB/usr/spool/at\fR.  The \fBcron\fR daemon
31 takes care of executing these jobs.  It checks to see if any
32 files in \fB/usr/spool/at\fR should now be run, and if so, it runs them 
33 and then puts them in \fB/usr/spool/at/past\fR.
34 The name of the file created in \fB/usr/spool/at\fR by \fBat\fR is
35 YY.DDD.HHMM.UU (where YY, DDD, HH, and MM give the time to execute and 
36 UU is a unique number).  Note that when the command runs, it will not be able 
37 to use standard input unless specifically redirected.  Standard output
38 will be mailed to the owner of the job.
39 .SH "SEE ALSO"
40 .BR cron (8).