1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-09 21:55:41 +02:00
tldr/pages/common/recsel.md
Managor ba6daef39d
*: standardize regex usage (#17328)
Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com>
2025-07-25 08:50:06 +03:00

535 B

recsel

Print records from a recfile: a human-editable, plain text database. More information: https://www.gnu.org/software/recutils/manual/recutils.html#Invoking-recsel.

  • Extract name and version field:

recsel {{[-p|--print]}} name,version {{data.rec}}

  • Use "~" to match a string with a given regex:

recsel {{[-e|--expression]}} "{{field_name}} ~ '{{regex}}' {{data.rec}}"

  • Use a predicate to match a name and a version:

recsel {{[-e|--expression]}} "name ~ '{{regex}}' && version ~ '{{regex}}'" {{data.rec}}