[BACK]Return to ident.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / rcs

File: [local] / src / usr.bin / rcs / ident.1 (download)

Revision 1.12, Sat Jun 29 09:08:41 2013 UTC (10 years, 10 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1, OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9, OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7, OPENBSD_6_6_BASE, OPENBSD_6_6, OPENBSD_6_5_BASE, OPENBSD_6_5, OPENBSD_6_4_BASE, OPENBSD_6_4, OPENBSD_6_3_BASE, OPENBSD_6_3, OPENBSD_6_2_BASE, OPENBSD_6_2, OPENBSD_6_1_BASE, OPENBSD_6_1, OPENBSD_6_0_BASE, OPENBSD_6_0, OPENBSD_5_9_BASE, OPENBSD_5_9, OPENBSD_5_8_BASE, OPENBSD_5_8, OPENBSD_5_7_BASE, OPENBSD_5_7, OPENBSD_5_6_BASE, OPENBSD_5_6, OPENBSD_5_5_BASE, OPENBSD_5_5, OPENBSD_5_4_BASE, OPENBSD_5_4, HEAD
Changes since 1.11: +3 -5 lines

do not use Sx for sections outwith the page;
man4 still to go...

.\"	$OpenBSD: ident.1,v 1.12 2013/06/29 09:08:41 jmc Exp $
.\"
.\" Copyright (c) 2005 Xavier Santolaria <xsa@openbsd.org>
.\" All rights reserved.
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
.\" copyright notice and this permission notice appear in all copies.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.Dd $Mdocdate: June 29 2013 $
.Dt IDENT 1
.Os
.Sh NAME
.Nm ident
.Nd identify RCS keyword strings in files
.Sh SYNOPSIS
.Nm
.Op Fl qV
.Op Ar
.Sh DESCRIPTION
The
.Nm
program searches for the pattern $keyword:... $ from the
.Ar files
specified as argument (or standard input if none are given).
See the KEYWORD SUBSTITUTION section of
.Xr rcs 1
for more information.
.Pp
The following options are supported:
.Bl -tag -width "XXX"
.It Fl q
Quiet mode: suppress warnings if no pattern found.
.It Fl V
Display version information and exit.
.El
.Sh EXIT STATUS
.Ex -std ident
.Sh EXAMPLES
Given the following source code in file
.Pa foo.c :
.Bd -literal -offset indent
#include \*(Ltstdio.h\*(Gt

static char const rcsid[] =
	"$\&Id: foo.c,v 1.2 2005/11/18 09:34:51 xsa Exp $";

int
main(void) {
	printf("%s\en", rcsid);
	return (0);
}
.Ed
.Pp
Compile it and run
.Nm :
.Bd -literal -offset indent
$ ident foo.c foo.o
foo.c:
     $\&Id: foo.c,v 1.2 2005/11/18 09:34:51 xsa Exp $
foo.o:
     $\&Id: foo.c,v 1.2 2005/11/18 09:34:51 xsa Exp $
.Ed
.Sh SEE ALSO
.Xr ci 1 ,
.Xr co 1 ,
.Xr cvs 1 ,
.Xr rcs 1 ,
.Xr rcsclean 1 ,
.Xr rcsdiff 1 ,
.Xr rcsmerge 1 ,
.Xr rlog 1