diff options
| author | Tomi Ollila <tomi.ollila@iki.fi> | 2016-02-09 13:37:20 +0200 |
|---|---|---|
| committer | Tomi Ollila <tomi.ollila@iki.fi> | 2016-02-09 13:37:20 +0200 |
| commit | 10d30ea8b2ccdfa129c8a5d3adcacf72fda279b8 (patch) | |
| tree | 4ffcceba1d588c2cc96b3689b353cebb5fd62876 | |
| parent | f3a5b59635d751347badc4bfceb181c794313a3e (diff) | |
use $HOME where ~ (usually) does not expand
| -rw-r--r-- | howto.mdwn | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -92,15 +92,15 @@ However, for users running with databases created in older versions of notmuch, these tags are missing in pre-existing messages and need to be added. One way to do this is as follows: - $ notmuch dump --output=~/out.nm + $ notmuch dump --output=$HOME/out.nm $ mv ~/Mail/.notmuch ~/.notmuch.bak $ notmuch new $ notmuch tag -inbox -unread '*' - $ notmuch restore --accumulate --input=~/out.nm + $ notmuch restore --accumulate --input=$HOME/out.nm At this point, one should run a sanity check on the tags, and if everything has merged correctly, the ~/.notmuch.bak directory is expendable, as is -~/out.nm. +$HOME/out.nm. ## <span id="mbox">**Dealing with mbox and other formats**</span> |
