csvkitHow to change the delimiter in csvkit?
The delimiter in csvkit can be changed using the csvformat
command.
Example code
csvformat -D '|' input.csv > output.csv
This command will change the delimiter from the default comma (,
) to a pipe (|
) in the input.csv
file and save the output to output.csv
.
Code explanation
csvformat
: the command used to change the delimiter-D
: the flag used to specify the delimiter'|'
: the delimiter to be usedinput.csv
: the input fileoutput.csv
: the output file
Helpful links
More of Csvkit
- How to select specific columns with csvkit?
- How to remove duplicates with csvkit?
- How to merge columns with csvkit?
- How to skip the first line with csvkit?
- How to remove columns with csvkit?
- How to join two files with csvkit?
- How to extract a column from a CSV file using csvkit?
- How to change the encoding in csvkit?
- How to fetch unique values with csvkit?
- How to remove header with csvkit?
See more codes...