Concept Flow - Logical operators (-a, -o, !)
Start
Evaluate first condition
Apply -a (AND) or -o (OR) operator
If ! operator present, negate result
Final result: True or False
End
The script checks conditions, combines them with AND (-a) or OR (-o), and can negate the result with !.