How to execute several batch commands in sequence
- by ptikobj
I want to create a Windows XP batch script that sequentially performs something like the following:
@echo off
:: build everything
cd \workspace\project1
mvn clean install
cd ..\project2
mvn clean install
:: run some java file
cd \workspace\project3
java -jar somefile.jar
When I create a Batch script like this (following these instructions), I…