Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scottchiefbaker/csv2tsv
Convert a comma separated list to a tab separated list
https://github.com/scottchiefbaker/csv2tsv
Last synced: 26 days ago
JSON representation
Convert a comma separated list to a tab separated list
- Host: GitHub
- URL: https://github.com/scottchiefbaker/csv2tsv
- Owner: scottchiefbaker
- License: gpl-2.0
- Created: 2015-05-05T20:51:39.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-08T22:15:32.000Z (over 9 years ago)
- Last Synced: 2023-04-08T11:56:15.257Z (over 1 year ago)
- Language: Perl
- Size: 137 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CSV2TSV
Simple script to convert a comma separated text file (csv) to a tab separated text file (tsv).Why would anyone want to do this? Tab separated files are easier to work with on the command line. Especially with utilities such as `cut` and `awk`.
**Usage:**
```
csv2tsv.pl input.csv > output.tsv
```