Skip to content

Latest commit

 

History

History
54 lines (33 loc) · 653 Bytes

csv2tab.1.md

File metadata and controls

54 lines (33 loc) · 653 Bytes

%csv2tab(1) user manual | version 1.2.12 03b4ff7 % R. S. Doiel % 2024-11-14

NAME

csv2tab

SYNOPSIS

csv2tab [OPTIONS]

DESCRIPTION

csv2tab is a simple conversion utility to convert from CSV to tab separated values. csv2tab reads from standard input and writes to standard out.

OPTIONS

-help : display help

-license : display license

-version : display version

EXAMPLES

If my.tab contained

    "name","email","age"
	"Doe, Jane","[email protected]",42

Concert this to a tab separated values

    csv2tab < my.csv 

This would yield

    name	email	age
	Doe, Jane	[email protected]	42

csv2tab 1.2.12