2005-09-20 13:31:55 +00:00
\section or or - Conditionally execute a command
\subsection or-synopsis Synopsis
2006-01-05 15:37:53 +00:00
<tt>COMMAND1; or COMMAND2</tt>
2005-09-20 13:31:55 +00:00
\subsection or-description Description
2006-01-05 15:37:53 +00:00
The \c or builtin is used to execute a command if the current exit status (as set by the last previous command) is non-zero
2005-09-20 13:31:55 +00:00
\subsection or-example Example
The following code runs the \c make command to build a program, or if it fails, it runs <tt>make clean</tt>, which removes the files created by the build process
<pre>
2006-01-05 15:37:53 +00:00
make; or make clean
2005-09-20 13:31:55 +00:00
</pre>