Skip to content

Instantly share code, notes, and snippets.

@BlkPingu
Last active July 18, 2019 21:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BlkPingu/a1fded02ca9e4ee9878d5a067f6aa1ad to your computer and use it in GitHub Desktop.
Save BlkPingu/a1fded02ca9e4ee9878d5a067f6aa1ad to your computer and use it in GitHub Desktop.
Bash Filter
grep -r -E -o "\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,6}\b" . > ~/Desktop/emails.txt
awk '[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,6}' emails.txt emailsfiltered.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment