Unix yardımcı programları tarafından biçimlendirilen man sayfalarının ve diğer belgelerin ``
, çift tırnak işareti ''
yerine, alıntı cümleleri sarmak için çift çift tırnak işaretleri ve ardından çift tek tırnak işaretleri kullandığını fark ettim "
. Tek tırnak benzer şekilde değiştirilir. Bu neden?
İşte man sayfasından birkaç örnek 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.
`...'
öne çıkmasını sağlayan özel bir vurgu yapıyor (yorumların içinde bile).