sed '/[A-Za-z0-9][A-Za-z0-9._%+-]+@[A-Za-z0-9][A-Za-z0-9.-]+\.[A-Za-z]{2,3}/d' emails.txt
is supposed to remove proper email addresses from emails.txt file. But it does not. Please help me...
sed '/[A-Za-z0-9][A-Za-z0-9._%+-]+@[A-Za-z0-9][A-Za-z0-9.-]+\.[A-Za-z]{2,3}/d' emails.txt
is supposed to remove proper email addresses from emails.txt file. But it does not. Please help me...