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 ..
|