Crates.io | svgrep |
lib.rs | svgrep |
version | 2.1.2 |
source | src |
created_at | 2017-11-10 23:12:44.477156 |
updated_at | 2021-08-02 19:46:01.278421 |
description | A grep-like utility for separated-values files written in Rust |
homepage | https://git.sr.ht/~tsdh/svgrep |
repository | https://git.sr.ht/~tsdh/svgrep |
max_upload_size | |
id | 38927 |
size | 112,442 |
svgrep
is a small utility for filtering and searching in separated values
files (CSV, TSV, whatever).
Here is its synopsis:
USAGE:
svgrep [FLAGS] [OPTIONS] [--] [FILE]
FLAGS:
-h, --help Prints help information
-t, --trim Trim the cell contents when printing.
-V, --version Prints version information
OPTIONS:
-@, --cell-select-char <char> Separates the <col>=<regex> pairs in --match expressions from
the column display selection (default: @).
-&, --conj-char <char> Separates multiple <col>=<regex> pairs in --match expressions
to form a conjunction (default: &).
-m, --match <match>... Sets the match-and-select expression.
Syntax:
<col>=<regex>(&<col>=<regex>)+@<disp_cols>
<col> is a natural number or * meaning any column.
<regex> is a regex matched against the cells at column <col>.
<disp_cols> is a comma-separated list of columns to display (defaul: all).
--match '1=foo&2=bar' acts as logical AND wheras multiple expressions like
--match '1=foo' '2=bar' act as a logical OR.
-=, --matches-char <char> Separates a <col> from the <regex> in --match expressions.
(default: =).
-s, --separator <char> Sets the separator to be used (default: ';')
ARGS:
<FILE> The separated values file. If none is given, reads from stdin.
For asking questions, sending feedback, or patches, refer to my public inbox (mailinglist). Please mention the project you are referring to in the subject.
If you've found a bug, please report it at ~tsdh/svgrep.