From e5aa46bb64d34802946c84b08d906891bbdfb904 Mon Sep 17 00:00:00 2001 From: Joshua Pickard Date: Thu, 9 Jun 2022 15:25:55 +0000 Subject: [PATCH] Update 'README.md' --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index ab19e79..64c46ce 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,22 @@ My cheat sheet for commands I have trouble remembering. +## Converting Emails +### EML to MBOX using eml2mbox (email2mbox-git on AUR) +``` +cd /path/to/eml/files +eml2mbox +``` +This creates `.archive.mbox`. + +### MBOX to HTML Threads using Mhonarc (mhonarc on AUR) +``` +cd /path/to/.archive.mbox/file +mhonarc .archive.mbox +``` +This creates `threads.html` and extracts all information into the directory. + + ## Find and copy files by extension recursively ```find . -name '*.pdf' -exec cp -r {} /home/jpickard/pdffiles \;```