There's a file called "Settings.txt", this file contains a lot of lines including the following variable line:
X 100
The number in this line is the variable part, "X" is a fixed text.
What I need is to check if that number is (less than 100) OR (equal or greater than 100) then based on the result > goto A or B.
The script could be something like:
IF >> "X 100" in "D:\Settings.txt" GEQ 100 goto A else goto B
:A
@echo the value is equal or greater than 100
pause & goto continue
:B
@echo the value is less than 100
pause
:continue
#the rest of the script