combos

Crates.iocombos
lib.rscombos
version0.2.1
sourcesrc
created_at2022-06-25 13:48:35.910774
updated_at2022-06-26 21:51:59.987143
descriptionPrint all permutations of a word list
homepagehttps://github.com/digitalsanctum/combos
repositoryhttps://github.com/digitalsanctum/combos
max_upload_size
id613046
size5,768
Shane Witbeck (thesurlydev)

documentation

README

combos

Given a file and integer k, print all possible permutations concatenated.

usage

Given the file /path/to/test with the following contents:

foo
bar
zoo

The command:

combos /path/to/test 2

will result in:

foobar
foozoo
barfoo
barzoo
zoofoo
zoobar
Commit count: 7

cargo fmt