summaryrefslogtreecommitdiff
path: root/usr.bin/tail
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2007-10-31 16:29:51 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2007-10-31 16:29:51 +0000
commit1829e3d24eb265e81a636f300a4413dad061983a (patch)
treef91a3fa4fd600bb8b95dd2740898ee4e1c281413 /usr.bin/tail
parent84b741b77cf138f3c8f9e3f83cd9f3fe16216a1a (diff)
sync usage() w/ synopsis; from Pierre Riteau
ok sobrado
Diffstat (limited to 'usr.bin/tail')
-rw-r--r--usr.bin/tail/tail.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/tail/tail.c b/usr.bin/tail/tail.c
index 39191f96cde..2246e7b77db 100644
--- a/usr.bin/tail/tail.c
+++ b/usr.bin/tail/tail.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tail.c,v 1.13 2006/03/22 19:43:29 kjell Exp $ */
+/* $OpenBSD: tail.c,v 1.14 2007/10/31 16:29:50 jmc Exp $ */
/*-
* Copyright (c) 1991, 1993
@@ -42,7 +42,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)tail.c 8.1 (Berkeley) 6/6/93";
#endif
-static char rcsid[] = "$OpenBSD: tail.c,v 1.13 2006/03/22 19:43:29 kjell Exp $";
+static char rcsid[] = "$OpenBSD: tail.c,v 1.14 2007/10/31 16:29:50 jmc Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -301,6 +301,7 @@ static void
usage(void)
{
(void)fprintf(stderr,
- "usage: tail [-f | -r] [-b # | -c # | -n #] [file ...]\n");
+ "usage: tail [-f | -r] "
+ "[-b number | -c number | -n number | -number] [file ...]\n");
exit(1);
}