N
nathan
lets say i have a batch file(blah.bat) that looks like
this:
@echo off
cd /d "c:\batch files"
start blah.bat
cd..
dir /s
cls
exit
and blah1.bat looks like this:
@echo off
cls
for /l %%i in (1,1,12) do echo.
echo please wait...
:loop
goto loop
my question is how can i get blah1.bat to close when
blah.bat is finished running. is this possible? or is
there a better way to go about this? thanks
this:
@echo off
cd /d "c:\batch files"
start blah.bat
cd..
dir /s
cls
exit
and blah1.bat looks like this:
@echo off
cls
for /l %%i in (1,1,12) do echo.
echo please wait...
:loop
goto loop
my question is how can i get blah1.bat to close when
blah.bat is finished running. is this possible? or is
there a better way to go about this? thanks