HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

ident — Identify RCS keyword strings in files. See also: `ci`, `co`, `rcs`, `rcsdiff`, `rlog`. More informat

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandstringsfileskeywordcliidentifyrcsident

Problem

How to use the ident command: Identify RCS keyword strings in files. See also: ci, co, rcs, rcsdiff, rlog. More information: <https://manned.org/ident>.

Solution

ident — Identify RCS keyword strings in files. See also: ci, co, rcs, rcsdiff, rlog. More information: <https://manned.org/ident>.

Display RCS identification strings in a file:
ident {{path/to/file}}


Display RCS identification strings, suppressing warnings if no patterns are found:
ident -q {{path/to/file1 path/to/file2 ...}}


Display RCS identification strings from stdin:
cat {{path/to/file}} | ident

Code Snippets

Display RCS identification strings in a file

ident {{path/to/file}}

Display RCS identification strings, suppressing warnings if no patterns are found

ident -q {{path/to/file1 path/to/file2 ...}}

Display RCS identification strings from `stdin`

cat {{path/to/file}} | ident

Context

tldr-pages: common/ident

Revisions (0)

No revisions yet.