Skip to content

Commit

Permalink
Changed f -> file so examples work
Browse files Browse the repository at this point in the history
  • Loading branch information
baalimago committed Feb 15, 2024
1 parent b381188 commit 2d03679
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var (
progressFlag = flag.String("progress", "STDOUT", "Options are: ['HIDDEN', 'FILE', 'STDOUT', 'BOTH']")
progressFormatFlag = flag.String("progressFormat", DEFAULT_PROGRESS_FORMAT, "Set the format for the output where first argument is the iteration and second argument is the amount of runs.")
outputFlag = flag.String("output", "HIDDEN", "Options are: ['HIDDEN', 'FILE', 'STDOUT', 'BOTH']")
fileFlag = flag.String("f", "", "Path to the file where the report will be saved, configure file conflicts automatically with 'fileMode'")
fileFlag = flag.String("file", "", "Path to the file where the report will be saved, configure file conflicts automatically with 'fileMode'")
fileModeFlag = flag.String("fileMode", "", "Configure how the report file should be treated. If a file exists, and this option isn't set, user will be queried. Options are: ['t'runcate, 'a'ppend] ")
statisticsFlag = flag.Bool("statistics", true, "Set to true if you don't wish to see statistics of the repeated command.")
incrementFlag = flag.Bool("increment", false, "Set to true and add an argument 'INC', to have 'INC' be replaced with the iteration. If increment == true && 'INC' is not set, repeater will panic.")
Expand Down

0 comments on commit 2d03679

Please sign in to comment.