mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
Note that comment prefix for CSV must be single-character
This commit is contained in:
parent
cd6431f7aa
commit
4d83e88ff6
1 changed files with 2 additions and 2 deletions
|
|
@ -2678,7 +2678,7 @@ var CommentsInDataFlagSection = FlagSection{
|
|||
{
|
||||
name: "--skip-comments-with",
|
||||
arg: "{string}",
|
||||
help: "Ignore commented lines within input, with specified prefix.",
|
||||
help: "Ignore commented lines within input, with specified prefix. For CSV input format, the prefix must be a single character.",
|
||||
parser: func(args []string, argc int, pargi *int, options *TOptions) {
|
||||
CheckArgCount(args, *pargi, argc, 2)
|
||||
options.ReaderOptions.CommentString = args[*pargi+1]
|
||||
|
|
@ -2700,7 +2700,7 @@ var CommentsInDataFlagSection = FlagSection{
|
|||
{
|
||||
name: "--pass-comments-with",
|
||||
arg: "{string}",
|
||||
help: "Immediately print commented lines within input, with specified prefix.",
|
||||
help: "Immediately print commented lines within input, with specified prefix. For CSV input format, the prefix must be a single character.",
|
||||
parser: func(args []string, argc int, pargi *int, options *TOptions) {
|
||||
CheckArgCount(args, *pargi, argc, 2)
|
||||
options.ReaderOptions.CommentString = args[*pargi+1]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue