Modular personalized dictionary generator - [git] - [github] - [license] - by Michael Constantine Dimopoulos - <mk@mcdim.xyz>
Some "hackers" just want to know how to hack things and never actually sit down to learn basic computing. Here are some Unix tips for generating & modifying wordlists & dictionaries that don't need to have their own autonomous programs:
cat dict1.txt dict2.txt dict3.txt > newdict.txt
awk '!x[$0]++' dict.txt
cat dict.txt | tr -d " " > newdict.txt
cat dict.txt | sed '/^$/d' > newdict.txt
awk 'length>6' dict.txt
du -sh dict.txt
wc -l dict.txt