Batch operators

From wikinotes
==  # equals
LEQ # <=
GEQ # >=
LSS # <
GTR # >
EQU # ==
NEQ # !=
if ("%var%" LEQ "3") { 
   echo %var% is less than 3
}