blob: 73566cde7e794d850c59c41305d7f88f696380c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
Scripting
=========
Document use cases and commands for ``run_script`` and ``run_pyscript``
Comments
--------
Any command line input where the first non-whitespace character is a `#` will
be treated as a comment. This means any `#` character appearing later in the
command will be treated as a literal. The same applies to a `#` in the middle
of a multiline command, even if it is the first character on a line.
Comments can be useful in :ref:`scripts`, but would be pointless within an
interactive session.
::
(Cmd) # this is a comment
(Cmd) this # is not a comment
|