Suppose I have three do files with following commands in them
File diX.do : di "X"
File diY.do : di "Y"
File diZ.do : di "Z"
How do I execute them simultaneously in separate instances of Stata?
I created a do file as follows
do diX.do
do diY.do
do diZ.do
but it executes them in a single instance one after another.
I looked into package parallel but could not find the install package, I looked into multishell package which seemed to be geared toward running simulations, I looked into batch processing but that requires entering commands separately. I tried winexec command but that simply open the do file but does not execute it. What am I missing? I am sure there is a way.