Percebi que as páginas de manual e outros documentos formatados pelos utilitários Unix costumam usar backticks duplos ``
seguidos por aspas simples ''
para colocar frases entre aspas, em vez do caractere de aspas duplas "
. Aspas simples são substituídas da mesma forma. Por que é isso?
Aqui estão alguns exemplos, na página de manual para 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.
`...'
-o (mesmo nos comentários).