I am working on one large project. In this i have to create one batch file for doing some operation like copy, move,convert the files. I have used one reference file which is similar to our project. From this , some contents are follows
1 @echo off
2 :: Param 1 > Firmware version,Param 2 > 1/2 for primary & Secondary
3 if "%1"=="" (
4 goto ERROR
5 ) else if "%2"=="" (
6 echo NOT ENOUGH PARAMETERS
7 goto ERROR
8 )
9 ::If primary :> Clenaup, if secondary:> Check primary file
10 if %2==1 (
What is meaning for line numbers 2,3,9 and 10.(For mentioning purpose only i am entered sequence numbers.) Can any one tell me please...?