Skip to content

Instantly share code, notes, and snippets.

@ps1dr3x
Created March 12, 2023 13:04
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 ps1dr3x/39b802844b86027b897b35b69cdfd017 to your computer and use it in GitHub Desktop.
Save ps1dr3x/39b802844b86027b897b35b69cdfd017 to your computer and use it in GitHub Desktop.
Grep matching email addresses. Output sorted and without duplicates
grep -Eiorh '([[:alnum:]_.-]+@[[:alnum:]_.-]+?\.[[:alpha:].]{2,6})' "$@" * | sort | uniq > emails.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment