Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWnuk committed Dec 2, 2024
1 parent 233db6c commit d3e0ca2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ These modify or filter the transformation mode.
-i value
Starting index for transformations if applicable. Accepts ranges separated by '-'.
-ic
Ignore case when processing output and converts to lowercase.
Ignore case when processing output and converts all output to lowercase.
-k value
Only keep items in a file.
-l value
Expand Down
2 changes: 1 addition & 1 deletion docs/USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ There are some additional notes when importing data and getting started:
- `ptt -n 50`: Show verbose statistics output with a maximum of 50 items.
- `ptt -o [FILE]`: Show output and save JSON output to a file.
- `ptt -md`: Show output as a Markdown table.
- `ptt -ic`: Ignore case when creating output.
- `ptt -ic`: Ignore case when creating output and convert to lowercase.
- These options are available for all transformations.
#### Rockyou Examples:
`ptt -f rockyou.txt -t pop -l 4-5`:
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func main() {
bypassMap := flag.Bool("b", false, "Bypass map creation and use stdout as primary output. Disables some options.")
debugMode := flag.Int("d", 0, "Enable debug mode with verbosity levels [0-2].")
URLParsingMode := flag.Int("p", 0, "Change parsing mode for URL input. [0 = Strict, 1 = Permissive, 2 = Maximum].")
ignoreCase := flag.Bool("ic", false, "Ignore case when processing output and converts to lowercase.")
ignoreCase := flag.Bool("ic", false, "Ignore case when processing output and converts all output to lowercase.")
flag.Var(&retain, "k", "Only keep items in a file.")
flag.Var(&remove, "r", "Only keep items not in a file.")
flag.Var(&readFiles, "f", "Read additional files for input.")
Expand Down

0 comments on commit d3e0ca2

Please sign in to comment.