1. batch 파일 내에서 또 다른 batch 파일 호출

  - 문제 : .bat 파일을 별다른 추가 명령 없이 실행하면, 해당 .bat 이후의 구문은 실행되지 않는다.

  - 필요한 구문 : call

 test.bat 파일  

call firstBatch.bat

call secondBatch.bat

만약 call statement가 없으면 secondBatch.bat는 실행되지 않는다.