Extracting all the mail addresses from the programs
Posted on December 17th, 2003 by Sacha Chua
grep -ri 'mail' * -A 10 -B 10 | less
This displays enough context information around the data so that I can
grab it easily.
grep -ri 'mail' * -A 10 -B 10 | less
This displays enough context information around the data so that I can
grab it easily.