summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2021-02-11 10:29:44 -0500
committerLuke Smith <luke@lukesmith.xyz>2021-02-11 10:29:44 -0500
commit423112a3ab31806f9c6a6c075b9cceaf31139583 (patch)
tree375f78861edbc8907b262eb7c4a1bfe93e4bd7b8
parentebb81bbcaa2f5ea694432396a4fcb0c000a1b88c (diff)
minor improvement of regex
-rwxr-xr-xbin/mw2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/mw b/bin/mw
index 129cda2..0da655e 100755
--- a/bin/mw
+++ b/bin/mw
@@ -184,7 +184,7 @@ delete() { if [ -z "${fulladdr+x}" ]; then
askinfo() { \
[ -z "$fulladdr" ] && echo "Give the full email address to add:" &&
read -r fulladdr
- while ! echo "$fulladdr" | grep -qE ".+@.+\..+"; do
+ while ! echo "$fulladdr" | grep -qE "^.+@.+\.[A-z]+$"; do
echo "\`$fulladdr\` is not a valid email address. Please retype the address:"
read -r fulladdr
done