Document that unexpand(1)'s -a and -t options are exclusive.

PR:		docs/85063
This commit is contained in:
Ruslan Ermilov 2006-10-13 16:22:25 +00:00
parent 0414904d4c
commit bb361298a5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=163316
2 changed files with 3 additions and 4 deletions

View File

@ -32,7 +32,7 @@
.\" @(#)expand.1 8.1 (Berkeley) 6/9/93 .\" @(#)expand.1 8.1 (Berkeley) 6/9/93
.\" $FreeBSD$ .\" $FreeBSD$
.\" .\"
.Dd April 21, 2002 .Dd October 13, 2006
.Dt EXPAND 1 .Dt EXPAND 1
.Os .Os
.Sh NAME .Sh NAME
@ -49,9 +49,8 @@
.Oc .Oc
.Op Ar .Op Ar
.Nm unexpand .Nm unexpand
.Op Fl a
.Oo .Oo
.Fl t .Fl a | t
.Sm off .Sm off
.Ar tab1 , tab2 , ... , tabn .Ar tab1 , tab2 , ... , tabn
.Sm on .Sm on

View File

@ -112,7 +112,7 @@ main(int argc, char *argv[])
static void static void
usage(void) usage(void)
{ {
fprintf(stderr, "usage: unexpand [-a] [-t tablist] [file ...]\n"); fprintf(stderr, "usage: unexpand [-a | -t tablist] [file ...]\n");
exit(1); exit(1);
} }