https://github.com/thesurlydev/combos
Generate combinations of words
https://github.com/thesurlydev/combos
command-line-tool rust wordlists
Last synced: 3 months ago
JSON representation
Generate combinations of words
- Host: GitHub
- URL: https://github.com/thesurlydev/combos
- Owner: thesurlydev
- License: mit
- Created: 2022-06-25T04:05:36.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-06-26T21:51:43.000Z (over 3 years ago)
- Last Synced: 2025-03-06T10:55:49.251Z (7 months ago)
- Topics: command-line-tool, rust, wordlists
- Language: Rust
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# combos
Given a file and integer k, print all possible permutations concatenated.
## usage
Given the file `/path/to/test` with the following contents:
```shell
foo
bar
zoo
```The command:
```shell
combos /path/to/test 2
```will result in:
```shell
foobar
foozoo
barfoo
barzoo
zoofoo
zoobar
```