tsv2csv alternatives and similar packages
Based on the "Text" category.
Alternatively, view tsv2csv alternatives based on common mentions on social networks and blogs.
-
skylighting
A Haskell syntax highlighting library with tokenizers derived from KDE syntax highlighting descriptions -
double-conversion
A fast Haskell library for converting between double precision floating point numbers and text strings. It is implemented as a binding to the V8-derived C++ double-conversion library.
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of tsv2csv or a related project?
README
tsv2csv
Convert tab-delimited text to Excel-style comma-delimited
According to some, Excel does it right. Some disagree. See http://superuser.com/questions/302334/true-difference-between-excel-csv-and-standard-csv.
This program follows the rules mentioned in the linked page:
If a cell contains a comma, a newline, or a double-quote, surround it in double-quotes. Otherwise, output it as is.
Build
Cabal:
cabal sandbox init
cabal install --dependencies-only
./install.sh
The result is tsv2csv
in the $HOME/.cabal/bin
directory,
which should be on your path.
which tsv2csv | xargs ls -l
Stack:
make install
Run
tsv2csv < input.tsv > output.csv
The intention is to compose a pipeline such as
sed 's/NOTE_TYPE_ID/14/g' db/stock-target-vs-downside.sql | ssh central@central '~/bin/mys devh' | tsv2csv
To run tests, use:
cabal build && echo runTests | cabal repl