LinuxCommandLibrary

csvkit

Manipulation toolkit for CSV files.

TLDR

Run a command on a CSV file with a custom delimiter

$ [cmd] -d [delimiter] [filename.csv]
copy


Run a command on a CSV file with a tab as a delimiter (overrides -d)
$ [cmd] -t [filename.csv]
copy


Run a command on a CSV file with a custom quote character
$ [cmd] -q [quote_char] [filename.csv]
copy


Run a command on a CSV file with no header row
$ [cmd] -H [filename.csv]
copy

Copied to clipboard