https://github.com/kostya-zero/csvv
A CSV Viewer.
https://github.com/kostya-zero/csvv
Last synced: 4 months ago
JSON representation
A CSV Viewer.
- Host: GitHub
- URL: https://github.com/kostya-zero/csvv
- Owner: kostya-zero
- Created: 2026-03-13T14:42:04.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-03-24T12:17:09.000Z (4 months ago)
- Last Synced: 2026-03-25T15:51:34.949Z (4 months ago)
- Language: Go
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# `csvv`
A CLI tool to inspect CSV structured data.
## Installation
### GitHub Releases
Download binary from [GitHub Releases](https://github.com/kostya-zero/csvv/releases) for you system.
### With Go
If you have Go installed you can run this command to install it:
```shell
go install github.com/kostya-zero/csvv
```
## Usage
```shell
# You can just give path to the CSV file and it will print it's content.
csvv data.csv
# You can also do additional operations.
csvv data.csv --first 7
csvv data.csv --last 3
csvv data.csv --select 103
# Export back to CSV
csvv data.csv --csv
```