Hi, I have a bunch of SAS programs and I wanted to run them once in a single program. I used print1.sas, print2.sas, and print3.sas as an example. They just print out a very simple data. I created a test.sh file: #!/usr/bin/sh sas print1.sas & sas print2.sas & sas print3.sas & I used the command: ksh test.sh It worked. I get a print1.log, print1.lst, print2.log, print2.lst, etc. Which is exactly what I needed. However, I keep getting the following warning message in 2 out of the 3 files: WARNING: Unable to copy SASUSER registry to WORK registry. Because of this, you will not see registry customizations during this session. My questions is: 1. SASUSER registry can only be used once? 2. Is this WARNING serious or its something harmless and can be ignored? 3. Is there something wrong with the test.sh file or what is the proper way of running a program like this? Thanks!
... View more