I want to have some groups of conditions in a Bash if statement. Specifically, I'm looking for something like the following:
if <myCondition1 and myCondition2> or <myCondition3 and myCondition4> then...
How may I group the conditions together in the way I describe for use with one if statement in Bash?