diff options
author | 1997-11-05 00:18:44 +0000 | |
---|---|---|
committer | 1997-11-05 00:18:44 +0000 | |
commit | 2705537627b6c9a1600e6d4dcde056f09e45f35f (patch) | |
tree | 7e60032b2ee64a9e10969b0870a69d16332dd11e | |
parent | avoid having pw_ information active when calling rcmd(); tacha@tera.fukui-med.ac.jp (diff) | |
download | wireguard-openbsd-2705537627b6c9a1600e6d4dcde056f09e45f35f.tar.xz wireguard-openbsd-2705537627b6c9a1600e6d4dcde056f09e45f35f.zip |
sync usage to man page
-rw-r--r-- | usr.bin/cut/cut.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.bin/cut/cut.c b/usr.bin/cut/cut.c index f3c1916e622..412698173ca 100644 --- a/usr.bin/cut/cut.c +++ b/usr.bin/cut/cut.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cut.c,v 1.4 1997/09/12 04:12:51 millert Exp $ */ +/* $OpenBSD: cut.c,v 1.5 1997/11/05 00:18:44 deraadt Exp $ */ /* $NetBSD: cut.c,v 1.9 1995/09/02 05:59:23 jtc Exp $ */ /* @@ -47,7 +47,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)cut.c 8.3 (Berkeley) 5/4/95"; #endif -static char rcsid[] = "$OpenBSD: cut.c,v 1.4 1997/09/12 04:12:51 millert Exp $"; +static char rcsid[] = "$OpenBSD: cut.c,v 1.5 1997/11/05 00:18:44 deraadt Exp $"; #endif /* not lint */ #include <ctype.h> @@ -278,6 +278,8 @@ void usage() { (void)fprintf(stderr, -"usage:\tcut -c list [file1 ...]\n\tcut -f list [-s] [-d delim] [file ...]\n"); + "usage:\tcut -c list [file1 ...]\n" + "\tcut -f list [-s] [-d delim] [file ...]\n" + "\tcut -b list [-n] [file ...]\n"); exit(1); } |