Me di cuenta de que las páginas de manual y otros documentos formateados por las utilidades de Unix a menudo usan dobles comillas ``
seguidas de dobles comillas simples ''
para ajustar las frases entre comillas en lugar del carácter de comillas dobles "
. Las comillas simples se reemplazan de manera similar. ¿Por qué es esto?
Aquí hay un par de ejemplos, de la página del 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.
`...'
que se destaque (incluso en los comentarios).