orcli/help/search.md

36 lines
698 B
Markdown

# orcli search
```
orcli search
apply regex to each column and print matches in flattened tsv format
output: index column value
Usage:
orcli search PROJECT [REGEX] [OPTIONS]
orcli search --help | -h
Options:
--index COLUMN
print column values instead of row.index in the first column of the output
--help, -h
Show this help
Arguments:
PROJECT
project name or id
REGEX
search term (regular expression, case-sensitive)
Examples:
orcli search "duplicates" "^Ben"
orcli search 1234567890123 "^Ben"
orcli search "duplicates" "^F$" --index "email"
orcli search "duplicates" | column -t -s $' '
```
code: [src/search_command.sh](../src/search_command.sh)