email-extract
v1.0.2
Published
Retrieve all emails from a given file and saves them in a txt file.
Readme
Node.js email addresses extractor
Extracts all email addresses from a given file and saves them in a new text file, each on a new line.
Example:
$ email-extract ~/Desktop/file_that_contains_emails.emlFile ~/Desktop/emails-found.txt :
[email protected]
[email protected]
...Install
npm install -g email-extractUsage
Usage: email-extract [options] <src>
Options:
-V, --version output the version number
-d, --dest <path> Destination file path, if not set the file will be saved in ./emails-found.txt
-h, --help output usage informationDev
git clone [email protected]:micc83/email-extract.git
cd email-extract
npm install
npm link