Forrest logo
back to context overview

recsel

List of commands for recsel:

  • recsel:tldr:239b0 recsel: Use "~" to match a string with a given regular expression.
    $ recsel -e "${field_name} ~ '${regular_expression}' ${data-rec}"
    try on your machine
    explain this command
  • recsel:tldr:4ca27 recsel: Use a predicate to match a name and a version.
    $ recsel -e "name ~ '${regular_expression}' && version ~ '${regular_expression}'" ${data-rec}
    try on your machine
    explain this command
  • recsel:tldr:b7189 recsel: Extract name and version field.
    $ recsel -p name,version ${data-rec}
    try on your machine
    explain this command
back to context overview