mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-24 11:41:15 -03:00
Fix command section separator line lengths
This commit is contained in:
@@ -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.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user