]> git.cworth.org Git - notmuch-wiki/blob - manpages/notmuch-tag-1.mdwn
5685a39843d8a1320ffcc1dad1abb311fe50911f
[notmuch-wiki] / manpages / notmuch-tag-1.mdwn
1 <h1>NOTMUCH-TAG(1)</h1>
2
3 <h2>NAME</h2>
4 <pre>
5        notmuch-tag  -  add/remove  tags  for  all messages matching the search
6        terms
7 </pre>
8
9 <h2>SYNOPSIS</h2>
10 <pre>
11        <b>notmuch</b> <b>tag</b> [options ...] +&lt;<u>tag</u>&gt;|-&lt;<u>tag</u>&gt; [--] &lt;<u>search-term</u>&gt; ...
12
13        <b>notmuch</b> <b>tag</b> <b>--batch</b> [--input=&lt;<u>filename</u>&gt;]
14 </pre>
15
16 <h2>DESCRIPTION</h2>
17 <pre>
18        Add/remove tags for all messages matching the search terms.
19
20        See <a href='../notmuch-search-terms-7/'>notmuch-search-terms</a>(7) for details of  the  supported  syntax  for
21        &lt;<u>search-term</u>&gt;.
22
23        Tags prefixed by &apos;+&apos; are added while those prefixed by &apos;-&apos; are removed.
24        For each message, tag changes are applied in the order they  appear  on
25        the command line.
26
27        The  beginning  of the search terms is recognized by the first argument
28        that begins with neither &apos;+&apos; nor &apos;-&apos;. Support  for  an  initial  search
29        term  beginning  with  &apos;+&apos;  or  &apos;-&apos; is provided by allowing the user to
30        specify a &quot;--&quot; argument to separate the tags from the search terms.
31
32        <b>notmuch</b> <b>tag</b> updates the maildir flags according to tag changes  if  the
33        <b>maildir.synchronize</b>_<b>flags</b>  configuration  option  is  enabled. See <a href='../notmuch-config-1/'>not-</a>
34        <a href='../notmuch-config-1/'>much-config</a>(1) for details.
35
36        Supported options for <b>tag</b> include
37
38            <b>--remove-all</b>
39
40                   Remove all tags from each message matching the search  terms
41                   before  applying  the  tag  changes appearing on the command
42                   line.  This means setting the tags of each  message  to  the
43                   tags to be added. If there are no tags to be added, the mes-
44                   sages will have no tags.
45
46            <b>--batch</b>
47
48                   Read  batch  tagging  operations  from  a  file  (stdin   by
49                   default).   This is more efficient than repeated <b>notmuch</b> <b>tag</b>
50                   invocations. See <u>TAG</u> <u>FILE</u> <u>FORMAT</u> below for the input format.
51                   This option is not compatible with specifying tagging on the
52                   command line.
53
54            <b>--input=&lt;filename&gt;</b>
55
56                   Read input from given file, instead of from  stdin.  Implies
57                   --batch.
58 </pre>
59
60 <h2>TAG FILE FORMAT</h2>
61 <pre>
62        The input must consist of lines of the format:
63
64        +&lt;<u>tag</u>&gt;|-&lt;<u>tag</u>&gt; [...] [--] &lt;<u>query</u>&gt;
65
66        Each  line  is  interpreted similarly to <b>notmuch</b> <b>tag</b> command line argu-
67        ments. The delimiter is one or more spaces &apos; &apos;. Any characters in &lt;<u>tag</u>&gt;
68        <b>may</b>  be  hex-encoded  with %NN where NN is the hexadecimal value of the
69        character. To hex-encode a character with a multi-byte UTF-8  encoding,
70        hex-encode  each  byte. Any spaces in &lt;tag&gt; <b>must</b> be hex-encoded as %20.
71        Any characters that are not part of &lt;<u>tag</u>&gt; <b>must</b> <b>not</b> be hex-encoded.
72
73        In the future tag:&quot;tag with spaces&quot; style quoting may be supported  for
74        &lt;<u>tag</u>&gt;  as  well;  for  this reason all double quote characters in &lt;<u>tag</u>&gt;
75        <b>should</b> be hex-encoded.
76
77        The &lt;<u>query</u>&gt; should be quoted using Xapian boolean term  quoting  rules:
78        if  a term contains whitespace or a close paren or starts with a double
79        quote, it must be enclosed in double quotes (not including any  prefix)
80        and  double quotes inside the term must be doubled (see below for exam-
81        ples).
82
83        Leading and trailing space &apos; &apos; is ignored. Empty lines and lines begin-
84        ning with &apos;#&apos; are ignored.
85 </pre>
86
87 <h3> &nbsp; EXAMPLE</h3>
88 <pre>
89        The  following shows a valid input to batch tagging. Note that only the
90        isolated &apos;*&apos; acts as a wildcard. Also note the two  different  quotings
91        of the tag <b>space</b> <b>in</b> <b>tags</b>
92
93        +winner *
94        +foo::bar%25 -- (One and Two) or (One and tag:winner)
95        +found::it -- tag:foo::bar%
96        # ignore this line and the next
97
98        +space%20in%20tags -- Two
99        # add tag &apos;(tags)&apos;, among other stunts.
100        +crazy{ +(tags) +&amp;are +#possible\ -- tag:&quot;space in tags&quot;
101        +match*crazy -- tag:crazy{
102        +some_tag -- id:&quot;this is &quot;&quot;nauty)&quot;&quot;&quot;
103 </pre>
104
105 <h2>SEE ALSO</h2>
106 <pre>
107        <a href='../notmuch-1/'>notmuch</a>(1),  <a href='../notmuch-config-1/'>notmuch-config</a>(1), <a href='../notmuch-count-1/'>notmuch-count</a>(1), <a href='../notmuch-dump-1/'>notmuch-dump</a>(1), <a href='../notmuch-hooks-5/'>not-</a>
108        <a href='../notmuch-hooks-5/'>much-hooks</a>(5),  <a href='../notmuch-insert-1/'>notmuch-insert</a>(1),  <a href='../notmuch-new-1/'>notmuch-new</a>(1),   <a href='../notmuch-reply-1/'>notmuch-reply</a>(1),
109        <a href='../notmuch-restore-1/'>notmuch-restore</a>(1),  <a href='../notmuch-search-1/'>notmuch-search</a>(1),  <a href='../notmuch-search-terms-7/'>notmuch-search-terms</a>(7),  <a href='../notmuch-show-1/'>not-</a>
110        <a href='../notmuch-show-1/'>much-show</a>(1),
111 </pre>
112
113 <h2>AUTHOR</h2>
114 <pre>
115        Carl Worth and many others
116 </pre>
117
118 <h2>COPYRIGHT</h2>
119 <pre>
120        2014, Carl Worth and many others
121 </pre>
122
123 <h2>0.18</h2>