Skip to main content

Bash Cheat Sheet

Comparison operators

 adaOperator Description  adOperatorDescription
-eqIs equal to -nIs not null
-neIs not equal to -zIs null
-gtIs greater than      
 -ge  Is greater than or equal to      
 -lt  Is less then      
 -le  Is less than or equal to      
==is equal to    
!=is not equal to   
<Is less than   
<=Is less than or equal to   
>Is greater then   
>=Is greater than or equal to