mirror of
https://github.com/disposable-email-domains/disposable-email-domains.git
synced 2025-05-10 10:35:27 +08:00
12 lines
396 B
Bash
Executable File
12 lines
396 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Unify locale settings temporarily to make sort produce the same order
|
|
export LC_ALL=C
|
|
|
|
# Converts uppercase to lowercase, sorts, removes duplicates and removes allowlisted domains
|
|
cat disposable_email_blocklist.conf | tr '[:upper:]' '[:lower:]' | sort -f | uniq -i > temp.conf
|
|
comm -23 temp.conf allowlist.conf > disposable_email_blocklist.conf
|
|
|
|
rm temp.conf
|
|
echo "Done!"
|