Ich habe festgestellt, dass Manpages und andere Dokumente, die von Unix-Dienstprogrammen formatiert wurden, häufig doppelte Anführungszeichen ``
gefolgt von doppelten einfachen Anführungszeichen verwenden ''
, um Anführungszeichen anstelle des doppelten Anführungszeichens in Anführungszeichen zu setzen "
. Einfache Anführungszeichen werden ebenfalls ersetzt. Warum ist das?
Hier einige Beispiele aus der Manpage für 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.
`...'
, die es hervorhebt (sogar innerhalb von Kommentaren).