.bat

Posts 13 of 3 · Page 1 of 1
.bat
Hey Sorry for my Eng but IS There enyone knows how to make this (start bat.bat features)

In bat will be

If (% 1>"text1);
And some stuff here.

If(% 2>"text2");
And some stuff here.

So in cmd i do start bat.bat text1 and it will do only text1 and after it say Ill do it and program close or something

Thx for anyone Who helps me.
I didn't really understand since you really need to work on your english.
I guess you're having problem comparing values?

Here's a quick example:

Code:
 @EcHo off

set input=""
set /p input="Enter :"

echo %input%

if %input% == test2 (
	echo equal
) else (
	echo not equal
)

pause
thanks for it.

anyways i just do if + goto.


but thanks. ill fix it for 90%
Posts 13 of 3 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?