Date: Thu, 9 Feb 2006 18:34:43 -0800
Reply-To: lex <lexjansen@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: lex <lexjansen@GMAIL.COM>
Organization: http://groups.google.com
Subject: Re: Running SAS jobs sequentially in batch mode - PC SAS v9.2
Content-Type: text/plain; charset="iso-8859-1"
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
|