docs: Use more command labels

This commit is contained in:
Fabian Homborg
2019-03-31 11:24:04 +02:00
parent cb94dd4d30
commit 86d4574222
9 changed files with 10 additions and 10 deletions

View File

@@ -14,8 +14,8 @@ Description
``or`` is used to execute a command if the previous command was not successful (returned a status of something other than 0).
``or`` statements may be used as part of the condition in an <a href="#if">``and``</a> or <a href="#while">``while``</a> block. See the documentation
for <a href="#if">``if``</a> and <a href="#while">``while``</a> for examples.
``or`` statements may be used as part of the condition in an :ref:`and <cmd-if>` or :ref:`while <cmd-while>` block. See the documentation
for :ref:`if <cmd-if>` and :ref:`while <cmd-while>` for examples.
``or`` does not change the current exit status itself, but the command it runs most likely will. The exit status of the last foreground command to exit can always be accessed using the <a href="index.html#variables-status">$status</a> variable.