comm(1): Add EXAMPLES section
Add two very simple examples. Approved by: manpages (gbe@) Differential Revision: https://reviews.freebsd.org/D25344
This commit is contained in:
parent
9886554a02
commit
bdfea496cf
@ -31,7 +31,7 @@
|
|||||||
.\" From: @(#)comm.1 8.1 (Berkeley) 6/6/93
|
.\" From: @(#)comm.1 8.1 (Berkeley) 6/6/93
|
||||||
.\" $FreeBSD$
|
.\" $FreeBSD$
|
||||||
.\"
|
.\"
|
||||||
.Dd December 12, 2009
|
.Dd July 27, 2020
|
||||||
.Dt COMM 1
|
.Dt COMM 1
|
||||||
.Os
|
.Os
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
@ -95,6 +95,35 @@ as described in
|
|||||||
.Xr environ 7 .
|
.Xr environ 7 .
|
||||||
.Sh EXIT STATUS
|
.Sh EXIT STATUS
|
||||||
.Ex -std
|
.Ex -std
|
||||||
|
.Sh EXAMPLES
|
||||||
|
Assuming a file named
|
||||||
|
.Pa example.txt
|
||||||
|
with the following contents:
|
||||||
|
.Bd -literal -offset indent
|
||||||
|
a
|
||||||
|
b
|
||||||
|
c
|
||||||
|
d
|
||||||
|
.Ed
|
||||||
|
.Pp
|
||||||
|
Show lines only in
|
||||||
|
.Pa example.txt ,
|
||||||
|
lines only in stdin and common lines:
|
||||||
|
.Bd -literal -offset indent
|
||||||
|
$ echo -e "B\enc" | comm example.txt -
|
||||||
|
B
|
||||||
|
a
|
||||||
|
b
|
||||||
|
c
|
||||||
|
d
|
||||||
|
.Ed
|
||||||
|
.Pp
|
||||||
|
Show only common lines doing case insensitive comparisons:
|
||||||
|
.Bd -literal -offset indent
|
||||||
|
$ echo -e "B\enc" | comm -1 -2 -i example.txt -
|
||||||
|
b
|
||||||
|
c
|
||||||
|
.Ed
|
||||||
.Sh SEE ALSO
|
.Sh SEE ALSO
|
||||||
.Xr cmp 1 ,
|
.Xr cmp 1 ,
|
||||||
.Xr diff 1 ,
|
.Xr diff 1 ,
|
||||||
@ -108,9 +137,7 @@ utility conforms to
|
|||||||
.Pp
|
.Pp
|
||||||
The
|
The
|
||||||
.Fl i
|
.Fl i
|
||||||
option is an extension to the
|
option is an extension to the POSIX standard.
|
||||||
.Tn POSIX
|
|
||||||
standard.
|
|
||||||
.Sh HISTORY
|
.Sh HISTORY
|
||||||
A
|
A
|
||||||
.Nm
|
.Nm
|
||||||
|
Loading…
Reference in New Issue
Block a user