HI all,
I am new to unix sas and seek help regarding it..
I have written a ksh(korn shell script) in unix which has 4 variables defined by using export command .
I have to call a sas program using ksh which I do like this
sas pgm1.sas..
My question is , How do I pass and use these variables...
I think this is one of the ways to do.
data data1;
infile datalines missover dlm = ' ' ;
input var1 @3 var2 $char1. @ ;
if var2 ne 'x' then do;
input @5 fname $ @10 lname $ @;
end;
input @16 pduce $;
datalines;
1 jane smith ornages
2 x apples
3 x grapes
4 jon drv...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.