csvgrep doesn't support --no-header-row option
Created by: inactivist
csvgrep available from pypi (csvkit 0.6.1) assumes first row is a header. --no-header-row
and -H
are not recognized as valid options.
$ csvgrep --no-header-row -c 9 -m "US" cities1000.txt
usage: csvgrep [-h] [-d DELIMITER] [-t] [-q QUOTECHAR] [-u {0,1,2,3}] [-b]
[-p ESCAPECHAR] [-z MAXFIELDSIZE] [-e ENCODING] [-S] [-v] [-l]
[--zero] [-n] [-c COLUMNS] [-m PATTERN] [-r REGEX]
[-f MATCHFILE] [-i]
[FILE]
csvgrep: error: unrecognized arguments: --no-header-row
Not sure if this is a known issue. Edit: I see by the changelog, 0.6.1 claims to have added the option to all tools.
0.6.1
-----
[snip]
* Add --no-header-row to all tools. (#189)