mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
19 lines
386 B
Plaintext
19 lines
386 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# csvclean
|
|
|
|
> Find and clean common syntax errors in CSV files.
|
|
> Included in csvkit.
|
|
> More information: <https://csvkit.readthedocs.io/en/latest/scripts/csvclean.html>.
|
|
|
|
- Clean a CSV file:
|
|
|
|
`csvclean {{bad.csv}}`
|
|
|
|
- List locations of syntax errors in a CSV file:
|
|
|
|
`csvclean -n {{bad.csv}}`
|