Unixユーティリティでフォーマットされたマニュアルページやその他のドキュメントでは、二重引用符の代わりに二重引用符と二重引用符を使用して、引用符で囲まれたフレーズをラップ``
することがよくあります。単一引用符も同様に置き換えられます。どうしてこれなの?''
"
以下に、manページからの例をいくつか示しますgrep
。
To find all occurrences of the pattern `.Pp' at the beginning of a line:
$ grep '^\.Pp' myfile
The apostrophes ensure the entire expression is evaluated by grep instead
of by the user's shell. The caret `^' matches the null string at the
beginning of a line, and the `\' escapes the `.', which would otherwise match
any character.
The grep utility is compliant with the IEEE Std 1003.1-2008 (``POSIX.1'')
specification.
`...'
、(コメント内であっても)特別な強調表示があります。