BurntSushi / xsv

A fast CSV command line toolkit written in Rust.
The Unlicense
10.35k stars 321 forks source link

Chore: fix a description of count --no-headers option #340

Closed Kanezoh closed 7 months ago

Kanezoh commented 7 months ago

related to https://github.com/BurntSushi/xsv/issues/329

just fix a description of count --no-headers option.


$ ./target/debug/xsv count --help
Prints a count of the number of records in the CSV data.

Note that the count will not include the header row (unless --no-headers is
given).

Usage:
    xsv count [options] [<input>]

Common options:
    -h, --help             Display this message
    -n, --no-headers       When set, the first row will be included in
                           the count.
    -d, --delimiter <arg>  The field delimiter for reading CSV data.
                           Must be a single character. (default: ,)