dictionary / rules ethereum
#8
(05-23-2021, 07:56 PM)Snoopy Wrote: cat wordlist1 wordlist 2 will just append list 2 to list1, not combine, so for that see combinator in hahscat utils or use hahstcat in combinator mode with --sttdout


You're right cat didn't combine the lists. Combinator does combine but seems to work through all possible combinations in a list so doesn't seem to provide what I need.

wordlist1

apple123
beer123
citrus123

wordlist2

apple
beer
citrus

should result in:

wordlistcombined

apple123apple
beer123beer
citrus123citrus

(so I don't need apple123beer... etc)

I found a solution. paste command did the trick.

paste -d "" wordlist1.txt wordlist2.txt > wordlistcombined.txt
Reply


Messages In This Thread
dictionary / rules ethereum - by B_Kchurc - 05-22-2021, 04:34 PM
RE: dictionary / rules ethereum - by Snoopy - 05-22-2021, 10:43 PM
RE: dictionary / rules ethereum - by B_Kchurc - 05-23-2021, 10:37 AM
RE: dictionary / rules ethereum - by Snoopy - 05-23-2021, 12:40 PM
RE: dictionary / rules ethereum - by B_Kchurc - 05-23-2021, 02:31 PM
RE: dictionary / rules ethereum - by B_Kchurc - 05-23-2021, 05:33 PM
RE: dictionary / rules ethereum - by Snoopy - 05-23-2021, 07:56 PM
RE: dictionary / rules ethereum - by B_Kchurc - 05-24-2021, 12:23 AM
RE: dictionary / rules ethereum - by jimby - 05-24-2021, 07:13 PM