A backslash is used to indicate that a character which would otherwise be
treated specially by the command line interpreter is to be treated literally. For
example, Unix-like systems attribute a special meaning to the exclamation mark, so
the command line
would fail. We must escape the exclamation mark with a backslash:
It follows that backslashes intended to be taken literally must themselves be
escaped (i.e. written \\
).