I have the following .bat file that calls 2 sql scripts.
start C:\sqlcl-latest\sqlcl\bin\sql javi/pwd@tnsname @"mypath1"
start C:\sqlcl-latest\sqlcl\bin\sql javi/pwd@tnsname @"mypath2"
However, when I execute this, the SQLCL windows that are opened in parallel are not closed when the execution ends. What can I add to close them off if no error is raised during the executions?