Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hachi8833/csvu
csvu is a very simple CSV colorizer, written in Golang
https://github.com/hachi8833/csvu
cli csv golang
Last synced: about 1 month ago
JSON representation
csvu is a very simple CSV colorizer, written in Golang
- Host: GitHub
- URL: https://github.com/hachi8833/csvu
- Owner: hachi8833
- License: mit
- Created: 2018-12-26T15:42:03.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-19T23:39:02.000Z (over 5 years ago)
- Last Synced: 2024-10-03T22:42:03.765Z (about 2 months ago)
- Topics: cli, csv, golang
- Language: Go
- Homepage:
- Size: 812 KB
- Stars: 12
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Introduction
`csvu` is a very simple CSV colorizer, written in Golang.
Inspired by a [rainbow_csv](https://github.com/mechatroner/rainbow_csv) plugin for vim.
Just read "cs-view".## Installation
If you have the environment for Golang development, just do the following:
```bash
go get github.com/hachi8833/csvu
```## Usage
`csvu` has the traditional stdin/stdout.
```bash
cat sample.csv|csvu
```![](screenshots/csvu_sample1.png)
Note that `csvu` has no other features such as specifying encodes. If you need to change encoding of the CSV, just use another command such as `nkf`.
```bash
cat sample.csv|nkf|csvu
```![](screenshots/csvu_sample2.png)