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 (May 1997, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Sat, 17 May 1997 16:55:34 GMT
Reply-To:     vhyu <erols.com@POP.EROLS.COM>
Sender:       "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From:         vhyu <erols.com@POP.EROLS.COM>
Organization: Victoria & Hsiwei Yu
Subject:      many ascii files
Content-Type: text/plain; charset=us-ascii

news:199705161924.QAA05930@gauss.dma.uem.br

Hi Josmar,

Sorry I mistakenly send it before done. Try again

data _null_; file print notitle; input Dos_Name $50.;

infile Dos_Name FILEVAR= Dos_Name end= EOF;

put 'Beginning of file ' Dos_Name; do until ( EOF ); input ; put _infile_; end; put 'END of file ' Dos_Name //; cards; a1.txt a2.dat a3.sas ;

Enjoy ..


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