Skip to content

Instantly share code, notes, and snippets.

@Averroes
Forked from super3/gist:7173942
Created February 24, 2017 08:31
Show Gist options
  • Save Averroes/a1588749f370f3daa1e456088a212030 to your computer and use it in GitHub Desktop.
Save Averroes/a1588749f370f3daa1e456088a212030 to your computer and use it in GitHub Desktop.
Linux Quick Guide

Extract Emails from a File:

grep -E -o "\b[a-zA-Z0-9.-]+@[a-zA-Z0-9.-]+\.[a-zA-Z0-9.-]+\b" data.txt | sort -u > emails.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment