looking through the man pages of crunch i think i may have found it but im now trying to think how could i apply it to the command i have
Code:
[-p charset] OR [-p word1 word2 ...] is optional and tells crunch to
generate words that don't have repeating characters. By default crunch
will generate a wordlist size of #of_chars_in_charset ^ max_length.
This option will instead generate #of_chars_in_charset!. The ! stands
for factorial. For example say the charset is abc and max length is
4.. Crunch will by default generate 3^4 = 81 words. This option will
instead generate 3! = 3x2x1 = 6 words (abc, acb, bac, bca, cab, cba).
THIS MUST BE THE LAST OPTION!
This option CANNOT be used with -s or -t and it ignores min and max
length however you must still specify two numbers.
Will this option allow me to stop repeating characters one after another or will it stop repeating characters through out the entire 8 char range?

Originally Posted by
pr0xibus
looking through the man pages of crunch i think i may have found it but im now trying to think how could i apply it to the command i have
Code:
[-p charset] OR [-p word1 word2 ...] is optional and tells crunch to
generate words that don't have repeating characters. By default crunch
will generate a wordlist size of #of_chars_in_charset ^ max_length.
This option will instead generate #of_chars_in_charset!. The ! stands
for factorial. For example say the charset is abc and max length is
4.. Crunch will by default generate 3^4 = 81 words. This option will
instead generate 3! = 3x2x1 = 6 words (abc, acb, bac, bca, cab, cba).
THIS MUST BE THE LAST OPTION!
This option CANNOT be used with -s or -t and it ignores min and max
length however you must still specify two numbers.
Will this option allow me to stop repeating characters one after another or will it stop repeating characters through out the entire 8 char range?
Well the -p option works but as it says in the man page min and max length are out of the window. looks like i will have to find another way. Cheers for your help anyway