I was reading through the original bourne shell signal handling implementation and noticed an expression inside a comment was quoted this way:
/* `stakbot' is preserved by this routine */
^^^^^^^^
also the zsh user guide
The command `bye' is identical to `exit'
and IIRC the zsh man pages use this same notation.
Why?
Is it to prevent the code from being accidentally being interpreted as a backtick expression and executed ?
or is it simply a convention?
‘stakbot’
. So essentially when you don't have access to those characters - and you want to use a quote which is specifically for opening and another for closing -\
....'` is a kind of DIY way of achieving that. cool, thanks. – the_velour_fog Sep 21 '16 at 09:17