Saturday, August 30, 2008

Rread a file in SAS and write it to another file


data _NULL_;
file texfile mod;
infile 'tmp.tex';
input a;
put _INFILE_;
run;


No comments: