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 1 year 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 11 years ago)
- Default Branch: master
- Last Pushed: 2019-12-30T16:24:46.000Z (about 6 years ago)
- Last Synced: 2025-01-24T17:32:28.675Z (about 1 year 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
[](http://travis-ci.org/jehiah/csvfilter) [](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
```