\section and and - Conditionally execute a command \subsection and-synopsis Synopsis COMMAND1; and COMMAND2 \subsection and-description Description The \c and builtin is used to execute a command if the current exit status (as set by the last previous command) is zero \subsection and-example Example The following code runs the \c make command to build a program, and if it succeeds, it runs make install, which installs the program.
make; and make install