Date: Wed, 30 Jul 2003 00:14:01 GMT
Reply-To: Richard Liu <kataliu@EARTHLINK.NET>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Richard Liu <kataliu@EARTHLINK.NET>
Organization: EarthLink Inc. -- http://www.EarthLink.net
Subject: put data to a flat file
Hi,
When I run the data step to output data to a flat file in Unix, the
generated file have no new line code in each row.
So I have to open the file in UltraEditor and convert them from Unix to Dos.
Can someone help me to know if there is anyway to have new line code in the
Unix environment?
data _null_;
....
put
@1 ....
@2 ...
...;
run;
And I have tried to use
data _null_;
....
end = '0a'x;
put
@1...
...
@123 end;
run;
But it won't work.
Thank you for your response.
|