%csv2tab(1) user manual | version 1.3.4 4312aaa % R. S. Doiel % 2025-05-15
csv2tab
csv2tab [OPTIONS]
csv2tab is a simple conversion utility to convert from CSV to tab separated values. csv2tab reads from standard input and writes to standard out.
-help : display help
-license : display license
-version : display version
If my.tab contained
"name","email","age"
"Doe, Jane","jane.doe@example.org",42
Concert this to a tab separated values
csv2tab < my.csv
This would yield
name email age
Doe, Jane jane.doe@example.org 42
csv2tab 1.3.4