#719840 csvtool: Recognize "`" as an input separator char, or say it fails in --help

Package:
csvtool
Source:
ocaml-csv
Description:
handy command line tool for handling CSV files
Submitter:
"Kingsley G. Morse Jr."
Date:
2013-08-15 23:21:05 UTC
Severity:
normal
#719840#5
Date:
2013-08-15 22:35:59 UTC
From:
To:
Thank you for maintaining csvtool.

I use it.

I happened to notice that, at least for me, it
does not seem to recognize the ` character as an
input separator.

For example:

    $ echo 'a`b' | csvtool -t \` col 2

returns nothing.

If you happen to agree that this is a problem,
maybe csvtool could be improved by either

    a.) recognizing the ` character as an input
        separator, or

    b.) saying ` won't work in the output of the
        --help option.

For what it's worth, a work around is

    $ echo 'a`b' | awk -F \` -v column=2 '{ print $column }'

Thanks,
Kingsley