Merge pull request #2828 from a3a3el/bugfix/man-page-quoting-fixes/v1
man: fix some single-quoted strings
This commit is contained in:
@ -23,7 +23,7 @@ See the *ANALYZING QUERIES* section for further details.
|
|||||||
|
|
||||||
*NOTE:* if you use queries on the command-line (say, for *mu find*), you need to
|
*NOTE:* if you use queries on the command-line (say, for *mu find*), you need to
|
||||||
quote any characters that would otherwise be interpreted by the shell, such as
|
quote any characters that would otherwise be interpreted by the shell, such as
|
||||||
'"', '*', '(' and ')'. The details are shell-specific. In case of doubt, the
|
`"', `*', `(' and `)'. The details are shell-specific. In case of doubt, the
|
||||||
*--analyze* option can be useful.
|
*--analyze* option can be useful.
|
||||||
|
|
||||||
* TERMS
|
* TERMS
|
||||||
@ -136,7 +136,7 @@ $ mu find "hello*"
|
|||||||
#+end_example
|
#+end_example
|
||||||
|
|
||||||
Quoting the "hello*" is recommended; some shells (but not all) would otherwise
|
Quoting the "hello*" is recommended; some shells (but not all) would otherwise
|
||||||
expand the '*' to all files in the current directory.
|
expand the `*' to all files in the current directory.
|
||||||
|
|
||||||
* REGULAR EXPRESSIONS
|
* REGULAR EXPRESSIONS
|
||||||
|
|
||||||
@ -165,7 +165,7 @@ whitespace, so the search for a message with subject "hello world", you can writ
|
|||||||
#+begin_example
|
#+begin_example
|
||||||
mu find 'subject:/hello\\040world/'
|
mu find 'subject:/hello\\040world/'
|
||||||
#+end_example
|
#+end_example
|
||||||
(with the \040 specifying a space in the regular expression, and and extra '\'
|
(with the \\040 specifying a space in the regular expression, and and extra `\\'
|
||||||
to escape it). In many cases,
|
to escape it). In many cases,
|
||||||
#+begin_example
|
#+begin_example
|
||||||
mu find 'subject:/hello.world/'
|
mu find 'subject:/hello.world/'
|
||||||
|
|||||||
Reference in New Issue
Block a user