diff --git a/README.md b/README.md index 9ca4166..2a332b7 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,26 @@ -# mgwls +

mgwls Tweet

+

Merge wordlists

-Merge wordlists +![mgwls](mgwls.png "mgwls") -Combines all single words from two wordlist files and concatenates them with each other, with optional delimiter +Combine words from two wordlist files and concatenate them with an optional delimiter +# Installation +## Binary +Binaries are available in the [latest release](https://github.com/trickest/mgwls/releases/latest). + +## Docker +``` +docker run quay.io/trickest/mgwls +``` + +## From source +``` +go install github.com/trickest/mgwls@latest +``` + +# Usage ``` -Usage of mgwls: -delimiter string String delimiter to place between words -l string @@ -21,7 +36,6 @@ Usage of mgwls: ``` ### Examples - ##### left.txt ``` 1 @@ -36,10 +50,8 @@ b c ``` ->Use " " to quote delimiters to avoid command line parsing errors when using reserved characters - ```shell script -> go run main.go -l left.txt -r right.txt -delimiter "_" +> mgwls -l left.txt -r right.txt -delimiter "_" 1_a 1_b 1_c @@ -52,8 +64,16 @@ c ``` ```shell script -> go run main.go -l left.txt -w foo -side right +> mgwls -l left.txt -w foo -side right 1foo 2foo 3foo -``` \ No newline at end of file +``` + +# Report Bugs / Feedback +We look forward to any feedback you want to share with us or if you're stuck with a problem you can contact us at [support@trickest.com](mailto:support@trickest.com). You can also create an [Issue](https://github.com/trickest/mgwls/issues/new) or pull request on the Github repository. + +# Where does this fit in your methodology? +Mgwls is an integral part of many workflows in the Trickest store. Sign up on [trickest.com](https://trickest.com) to get access to these workflows or build your own from scratch! + +[](https://trickest-access.paperform.co/) diff --git a/banner.png b/banner.png new file mode 100644 index 0000000..3eed7bd Binary files /dev/null and b/banner.png differ diff --git a/go.mod b/go.mod index 4e0612a..7fe3c73 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module mgwls +module github.com/trickest/mgwls -go 1.17 +go 1.18 diff --git a/mgwls.png b/mgwls.png new file mode 100644 index 0000000..3d1f50c Binary files /dev/null and b/mgwls.png differ