Shell Programming/If
Tools
General
Sister projects
In other projects
The if statement has the following basic structure:
if [ condition of expressions ]; then fi
The && and || can be used in control statements to represent nested loops like:
if [ condition1 ]; then if [ condition 2 ]; then fi fi
as:
if [ condition1 ] && [ condition2 ]; then fi