2005-09-20 13:31:55 +00:00
|
|
|
|
|
|
|
\section and and - Conditionally execute a command
|
|
|
|
|
|
|
|
\subsection and-synopsis Synopsis
|
2006-01-05 15:37:53 +00:00
|
|
|
<tt>COMMAND1; and COMMAND2</tt>
|
2005-09-20 13:31:55 +00:00
|
|
|
|
|
|
|
\subsection and-description Description
|
|
|
|
|
2006-01-05 15:37:53 +00:00
|
|
|
The \c and builtin is used to execute a command if the current exit status (as set by the last previous command) is zero
|
2005-09-20 13:31:55 +00:00
|
|
|
|
|
|
|
\subsection and-example Example
|
|
|
|
|
2006-01-23 23:17:06 +00:00
|
|
|
The following code runs the \c make command to build a program, and if it succeeds, it runs <tt>make install</tt>, which installs the program.
|
2005-09-20 13:31:55 +00:00
|
|
|
<pre>
|
2006-01-05 15:37:53 +00:00
|
|
|
make; and make install
|
2005-09-20 13:31:55 +00:00
|
|
|
</pre>
|
|
|
|
|