wireservice / csvkit

A suite of utilities for converting to and working with CSV, the king of tabular file formats.
https://csvkit.readthedocs.io
MIT License
5.9k stars 605 forks source link

Does csvkit support the # character as comments? #1238

Closed blee44 closed 2 months ago

blee44 commented 2 months ago

Does csvkit support using the # character as comments or is there a way to ignore lines that begin with # when using tools in csvkit?

jpmckinney commented 2 months ago

csvgrep --invert-match -c1 -r '^#' would work to remove rows starting with #

blee44 commented 2 months ago

Thanks!