Date: Wed, 22 Oct 2008 10:43:53 -0700
Reply-To: Bob Burnham <bob.burnham@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Bob Burnham <bob.burnham@GMAIL.COM>
Organization: http://groups.google.com
Subject: Re: Q: Batch run of many sas programs on Windows
Content-Type: text/plain; charset=ISO-8859-1
> How about my first article being "Welcome to MS-DOS (and gawk)"? Is
> there a demand for such a thing?
One last thought on this... if you have gawk installed under Cygwin,
how about using the 'find' command too and skipping the entire batch
file process? For example:
find . -name '*.sas' -exec sas -nosplash -nologo -icon -sysin {} \;
That command, which I just tested under Cygwin, will invoke SAS on
each file with a .sas extension as if you had run each one from the
command line.
Bob
|