summaryrefslogtreecommitdiff
path: root/howto.mdwn
diff options
context:
space:
mode:
authorTomi Ollila <tomi.ollila@iki.fi>2016-02-09 13:37:20 +0200
committerTomi Ollila <tomi.ollila@iki.fi>2016-02-09 13:37:20 +0200
commit10d30ea8b2ccdfa129c8a5d3adcacf72fda279b8 (patch)
tree4ffcceba1d588c2cc96b3689b353cebb5fd62876 /howto.mdwn
parentf3a5b59635d751347badc4bfceb181c794313a3e (diff)
use $HOME where ~ (usually) does not expand
Diffstat (limited to 'howto.mdwn')
-rw-r--r--howto.mdwn6
1 files changed, 3 insertions, 3 deletions
diff --git a/howto.mdwn b/howto.mdwn
index f741408..d39dab3 100644
--- a/howto.mdwn
+++ b/howto.mdwn
@@ -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>