I have two batch files that I would like to run right away. So I wrote the following:
@echo off java -jar happyjar.jar java -jar sadjar.jar pause
When I run the script, it starts happyjar first, then it starts the sajar. Is it possible to run both banks simultaneously without running multiple batch files?
java batch-file
user1797443
source share