Wow, that is quite cool. I was looking for something like this for quite
a while but wasn't sure how to implement this. Thanks, Allin!
Artur
<bash>
gretlcli --scriptopt=1 -b parallel.inp &
gretlcli --scriptopt=2 -b parallel.inp &
wait
echo All done
</bash>
or
<cmd.exe>
start gretlcli --scriptopt=1 -b parallel.inp
start gretlcli --scriptopt=2 -b parallel.inp
</cmd.exe>
Allin