LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (February 2006, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments:   To: sas-l@uga.edu
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


Back to: Top of message | Previous page | Main SAS-L page