Skip to content

Commit

Permalink
Added tip based on issue #44
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasbn committed May 19, 2021
1 parent 6cd19b3 commit f231488
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,27 @@ updates:
interval: "weekly"
```
### Slimming Your Wordlist By Ignoring Case
This tip works for `aspell`.

You can slim down your `.wordlist.txt` file if you have case variations of entries of words.

```yaml
aspell:
ignore-case: true
```

To convert you existing `.wordlist.txt` you could do something along the lines of this using Bash version 4.

```bash
$ tr '[:upper:]' '[:lower:]' < .wordlist.txt > temp-wordlist.txt
$ cat tmp-wordlist.txt | sort -u > .wordlist.txt
$ rm tem-wordlist.txt
```

And you should be good to go.

## Diagnostics

This is a list of common diagnostics, which can be emitted by the action and it's tools.
Expand Down

0 comments on commit f231488

Please sign in to comment.