Fix command section separator line lengths

This commit is contained in:
ridiculousfish
2019-01-02 20:10:47 -08:00
parent 0e936198db
commit c8dc306b18
85 changed files with 287 additions and 287 deletions

View File

@@ -1,5 +1,5 @@
or - conditionally execute a command
==========================================
====================================
Synopsis
--------
@@ -8,7 +8,7 @@ COMMAND1; or COMMAND2
Description
------------
-----------
``or`` is used to execute a command if the previous command was not successful (returned a status of something other than 0).
@@ -18,7 +18,7 @@ for <a href="#if">``if``</a> and <a href="#while">``while``</a> 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.
Example
------------
-------
The following code runs the ``make`` command to build a program. If the build succeeds, the program is installed. If either step fails, ``make clean`` is run, which removes the files created by the build process.