Common sort commands for deduplicating and ordering wordlists during pentests.
Sort is most useful during a pentest for cleaning up large wordlists and combo lists before you feed them into another tool.
sort -f mega_from_combolists.txt | uniq -i > mega_from_combolists_unique.txt # Sort case-insensitively and remove duplicate lines



