Here is my script:
@echo off
echo.|if defined 1 geq 1 echo 1 is geq than 1
echo.|if defined 2 gtr 100 echo 2 is gtr than 100
echo.|if 1 gtr gtr 100 echo 1 is gteater than 100
echo.|if 100 lss gtr 100 echo 100 is gteater and the same time less than 100
the output is :
1 is geq than 1
2 is gtr than 100
1 is gteater than 100
100 is gteater and the same time less than 100
What is going with IF
command?