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?