Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)