05-24-2021, 12:23 AM
(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