Rename Gmail Address Generator .txt to Gmail Address Generator.txt

This commit is contained in:
Narsty
2023-06-24 11:57:43 -05:00
committed by GitHub
parent 55490b6505
commit 7759f2de1f
@@ -20,4 +20,4 @@ ENTER
DELAY 1000
STRING EMAIL=$(cat /dev/urandom | LC_ALL=C tr -dc 'a-zA-Z0-9' | fold -w 10 | head -n 1)@gmail.com; clear; echo "Generated email: $EMAIL"; echo "Checking email availability..."; RESPONSE=$(curl -s "https://mail.google.com/verify?email=$EMAIL"); if [[ $RESPONSE == *"The email address you entered is not available."* ]]; then echo "Email is not available"; else echo "Email is available"; fi
DELAY 1000
ENTER
ENTER