The document discusses different conditional statements in Unix shell scripting including if-then, if-then-else, if-elif-else, and case-esac. If-then is used to execute statements conditionally based on a boolean expression. If-then-else adds an else block for when the expression is false. If-elif-else allows evaluating multiple expressions in order. Case-esac is useful for multi-way branches and compares a variable against patterns to execute the corresponding block. Examples are provided for each conditional statement.