유닉스 유틸리티로 포맷 된 매뉴얼 페이지와 다른 문서 는 큰 따옴표 대신 ``
큰 따옴표 ''
를 사용하여 따옴표 붙은 문구를 감싸는 경우가 많습니다 "
. 작은 따옴표도 비슷하게 대체됩니다. 왜 이런거야?
다음은 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.
`...'
하여 눈에 띄게 만듭니다 (댓글 내에서도).