Skip to content

Instantly share code, notes, and snippets.

@heyseus1
Last active August 29, 2015 14:21
Show Gist options
  • Save heyseus1/f0953a5529350ad57e7e to your computer and use it in GitHub Desktop.
Save heyseus1/f0953a5529350ad57e7e to your computer and use it in GitHub Desktop.
perl one liner that removes customer data from email logs
sudo grep @ mail.log | perl -p -e 's/ warning: header .*\[/header=<--removed-->,/g;s/from=<.+?@/from=<--removed-->@/g; s/to=<.+?@/to=<--removed-->@/g; s/<.+?com>/<--removed-->.com/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment