diff options
author | 1998-07-24 00:32:23 +0000 | |
---|---|---|
committer | 1998-07-24 00:32:23 +0000 | |
commit | cf069d578f46e44293f86ac53e660e56b51ff174 (patch) | |
tree | dd65a33af8db2f64fbe7c90d49b7fa6c8b3a6f1c | |
parent | -lcurses, not termcap/termlib (diff) | |
download | wireguard-openbsd-cf069d578f46e44293f86ac53e660e56b51ff174.tar.xz wireguard-openbsd-cf069d578f46e44293f86ac53e660e56b51ff174.zip |
put -H in synopsis; aaron@ug.cs.dal.ca
-rw-r--r-- | usr.bin/sort/sort.1 | 4 | ||||
-rw-r--r-- | usr.bin/sort/sort.c | 6 |
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); } |