mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
23 lines
534 B
Plaintext
23 lines
534 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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`
|