csvlens-0.1.4 is not a library.
Visit the last successful build:
csvlens-0.15.1
csvlens
csvlens is a CSV file viewer in the command line. It is similar to less but
made for CSV.

Usage
Run csvlens by providing the CSV filename:
csvlens <filename>
Pipe CSV data directly to csvlens:
<your commands producing some csv data> | csvlens
Supported interactions
- Scroll:
hjkl,← ↓ ↑→,Page Up,Page Down - Jump to line
n:nG - Search:
/<thing>- Go to next result:
n - Go to previous result:
N
- Go to next result:
- Filter:
&<thing>(or//<thing>)
Optional parameters
-d <delimiter>: Custom delimiter to use when parsing the CSV (e.g.csvlens file.csv -d \t)
Installation
csvlens is available on crates.io, so you
can install it using:
cargo install csvlens
Or, build and install from source:
cargo install --path $(pwd)