summaryrefslogtreecommitdiff
path: root/usr.bin/sort
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1998-07-24 00:32:25 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1998-07-24 00:32:25 +0000
commitf851098596d7cebc18176ac1e7982ccd4719004b (patch)
tree9287e97094af2478d943b8324a75a167d51aad29 /usr.bin/sort
parent7c5db15603132b9f94a11af57c5a56b205c0eaff (diff)
put -H in synopsis; aaron@ug.cs.dal.ca
Diffstat (limited to 'usr.bin/sort')
-rw-r--r--usr.bin/sort/sort.14
-rw-r--r--usr.bin/sort/sort.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/sort/sort.1 b/usr.bin/sort/sort.1
index 07d6a935c34..e8d64573a25 100644
--- a/usr.bin/sort/sort.1
+++ b/usr.bin/sort/sort.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: sort.1,v 1.1 1997/01/20 19:39:55 millert Exp $
+.\" $OpenBSD: sort.1,v 1.2 1998/07/24 00:32:23 deraadt Exp $
.\"
.\" Copyright (c) 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -44,7 +44,7 @@
.Nd sort or merge text files
.Sh SYNOPSIS
.Nm sort
-.Op Fl cmubdfinr
+.Op Fl cmubdfinrH
.Op Fl t Ar char
.Op Fl R Ar char
.Oo
diff --git a/usr.bin/sort/sort.c b/usr.bin/sort/sort.c
index d62c6c8e727..80d9b17f9b8 100644
--- a/usr.bin/sort/sort.c
+++ b/usr.bin/sort/sort.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sort.c,v 1.10 1998/07/20 20:02:19 mickey Exp $ */
+/* $OpenBSD: sort.c,v 1.11 1998/07/24 00:32:24 deraadt Exp $ */
/*-
* Copyright (c) 1993
@@ -46,7 +46,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)sort.c 8.1 (Berkeley) 6/6/93";
#else
-static char rcsid[] = "$OpenBSD: sort.c,v 1.10 1998/07/20 20:02:19 mickey Exp $";
+static char rcsid[] = "$OpenBSD: sort.c,v 1.11 1998/07/24 00:32:24 deraadt Exp $";
#endif
#endif /* not lint */
@@ -313,7 +313,7 @@ usage(msg)
if (msg)
warnx(msg);
- (void)fprintf(stderr, "usage: %s [-T dir] [-o output] [-cmubdfinr] "
+ (void)fprintf(stderr, "usage: %s [-T dir] [-o output] [-cmubdfinrH] "
"[-t char] [-R char] [-k keydef] ... [files]\n", __progname);
exit(2);
}