Skip to content

Instantly share code, notes, and snippets.

@amiad
Created September 20, 2016 08:28
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 amiad/1e5c7d042738915ab7b8e21c1b336b6a to your computer and use it in GitHub Desktop.
Save amiad/1e5c7d042738915ab7b8e21c1b336b6a to your computer and use it in GitHub Desktop.
Filter emails list from file
#!/bin/bash
cat $1 | egrep -o "[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,6}" | tr '\n' ','
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment