An open API service indexing awesome lists of open source software.

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

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
```