Skip to content

Instantly share code, notes, and snippets.

@bestrocker221
Last active June 5, 2018 11:38
Show Gist options
  • Save bestrocker221/084cdf1fb86d09f4506488a43b30c813 to your computer and use it in GitHub Desktop.
Save bestrocker221/084cdf1fb86d09f4506488a43b30c813 to your computer and use it in GitHub Desktop.
Get email addresses from web page.
#!/bin/bash
#$1 is the URL
curl -s $1 | grep -Po 'mailto:[[:print:]]*@[a-zA-Z0-9]*\.[a-z]{2,3}' | sed -e 's/mailto://g' | cut -f1 -d"\""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment