Skip to content

Commit 6c25d41

Browse files
committed
Updated
1 parent cce9a93 commit 6c25d41

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cmd/cli/flags.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ func NewFlags(name string, args []string, register ...FlagsRegister) (*Flags, er
3333
// Register flags
3434
flags.Bool("debug", false, "Enable debug logging")
3535
flags.Duration("timeout", 0, "Timeout")
36-
flags.String("out", "txt", "Output format (txt, csv, tsv, json) or file name (.txt, .csv, .tsv, .json)")
36+
flags.String("out", "txt", "Output format <txt|csv|tsv|json> or file name <filename>.<txt|csv|tsv|json>")
37+
flags.String("cols", "", "Comma-separated list of columns to output")
3738
for _, fn := range register {
3839
fn(flags)
3940
}

0 commit comments

Comments
 (0)