grep 'football\|soccer' /usr/share/wordlists/rockyou.txt > /tmp/new_dictionary.txt
If you don’t give \ then neither football nor soccer will be written in new_dictionary.txt file. But if you give only soccer or only football for example grep 'football' or grep 'soccer' then it will be written in the new_dictionary.txt file including prefix and suffix.
Prefix = 123soccer
Suffix = soccer123
Both prefix and suffix = 123soccer123
Comments
Post a Comment