Skip to content

Commit

Permalink
Merge pull request #163 from gruz0/fix/typo-in-csv2table-flags
Browse files Browse the repository at this point in the history
Fix typo in csv2table flags
  • Loading branch information
olekukonko committed Oct 21, 2020
2 parents 163badb + 170023b commit 430449b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions csv2table/csv2table.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ import (
)

var (
fileName = flag.String("f", "", "Set file with eg. sample.csv")
fileName = flag.String("f", "", "Set file with eg. sample.csv")
delimiter = flag.String("d", ",", "Set CSV File delimiter eg. ,|;|\t ")
header = flag.Bool("h", true, "Set header options eg. true|false ")
align = flag.String("a", "none", "Set aligmement with eg. none|left|right|center")
pipe = flag.Bool("p", false, "Suport for Piping from STDIN")
align = flag.String("a", "none", "Set alignment with eg. none|left|right|center")
pipe = flag.Bool("p", false, "Support for Piping from STDIN")
border = flag.Bool("b", true, "Enable / disable table border")
)

Expand Down

0 comments on commit 430449b

Please sign in to comment.