Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jehiah/csvfilter
A simple tool to filter for specific csv columns
https://github.com/jehiah/csvfilter
csv csv-converter csvfilter go
Last synced: about 2 months ago
JSON representation
A simple tool to filter for specific csv columns
- Host: GitHub
- URL: https://github.com/jehiah/csvfilter
- Owner: jehiah
- Created: 2014-10-03T14:58:17.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-12-30T16:24:46.000Z (about 5 years ago)
- Last Synced: 2024-10-14T13:59:26.420Z (3 months ago)
- Topics: csv, csv-converter, csvfilter, go
- Language: Go
- Size: 1.95 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# csvfilter
[![Build Status](https://secure.travis-ci.org/jehiah/csvfilter.png?branch=master)](http://travis-ci.org/jehiah/csvfilter) [![GitHub release](https://img.shields.io/github/release/jehiah/csvfilter.svg)](https://github.com/jehiah/csvfilter/releases/latest)
`csvfilter` provides an easy way to extract specific CSV columns in a unix pipeline
To extract just the 0th and 2nd CSV column (skipping the 1st column) you could run this:
```bash
cat data.csv | csvfilter -c 0,2
```