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 (July 2003, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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.


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