|
If the order in which your programs run is important, then create a
text file (programs.txt) with notepad, with your programs in the right
order:
program1.sas
program2.sas
...
and create the batch file:
u:
cd u:\public_html\democd1\
for /F %%i in (programs.txt) do sdssas %%i -nosplash -nostatuswin
Lex Jansen
|