diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2007-03-26 13:55:43 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2007-03-26 13:55:43 +0000 |
commit | 809b44e733584352a8d3f00cb88dcd592ba899bb (patch) | |
tree | e0f4694fa20cdae0d671582496c2ad938c346803 /usr.bin/at/at.c | |
parent | 806854fba7bf2d6cfbe8ce219d876df463517e6d (diff) |
indicate that -l takes an optional argument;
whilst here, clean up the -cr descriptions, add some refs to
SEE ALSO, and merge the first two synopses into one
based on a diff from J.C. Roberts
help/ok millert
Diffstat (limited to 'usr.bin/at/at.c')
-rw-r--r-- | usr.bin/at/at.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/at/at.c b/usr.bin/at/at.c index a7c4bfef13f..92252f85b11 100644 --- a/usr.bin/at/at.c +++ b/usr.bin/at/at.c @@ -1,4 +1,4 @@ -/* $OpenBSD: at.c,v 1.46 2006/04/26 03:01:48 cloder Exp $ */ +/* $OpenBSD: at.c,v 1.47 2007/03/26 13:55:42 jmc Exp $ */ /* * at.c : Put file into atrun queue @@ -42,7 +42,7 @@ #define TIMESIZE 50 /* Size of buffer passed to strftime() */ #ifndef lint -static const char rcsid[] = "$OpenBSD: at.c,v 1.46 2006/04/26 03:01:48 cloder Exp $"; +static const char rcsid[] = "$OpenBSD: at.c,v 1.47 2007/03/26 13:55:42 jmc Exp $"; #endif /* Variables to remove from the job's environment. */ @@ -892,9 +892,9 @@ usage(void) case AT: case CAT: (void)fprintf(stderr, - "usage: at [-blm] [-f file] [-q queue] -t time_arg\n" - " at [-blm] [-f file] [-q queue] timespec\n" - " at -c | -r job [job ...]\n"); + "usage: at [-bm] [-f file] [-l [user ...]] [-q queue] " + "-t time_arg | timespec\n" + " at -c | -r job ...\n"); break; case ATQ: (void)fprintf(stderr, |