csvlens
is a command line CSV file viewer. It is similar to less
but made
for CSV.
Run csvlens
by providing the CSV filename:
csvlens <filename>
Pipe CSV data directly to csvlens
:
<your commands producing some csv data> | csvlens
hjkl
, ← ↓ ↑→
Ctrl + F
(or Page Down
), Ctrl-B
(or Page Up
)Ctrl + h
(or Ctrl + ←
), Ctrl + l
(or Ctrl + →
)G
g
n
: nG
/<thing>
n
N
&<thing>
(or //<thing>
)q
-d <delimiter>
: Custom delimiter to use when parsing the CSV
(e.g. csvlens file.csv -d \t
)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)
csvlens
is also available on pkgsrc. If you're using NetBSD you can install it using:
pkgin install csvlens