SASUnit Examples  Version 1.5.0
_copyfile.sas
Go to the documentation of this file.
1 
25 %MACRO _copyFile (i_file /* input file */
26  ,o_file /* output file */
27  );
28  DATA _null_;
29  INFILE "&i_file" RECFM=N LRECL=1048576 LENGTH=l SHAREBUFFERS BLKSIZE=32768;
30  FILE "&o_file" RECFM=N LRECL=32768 BLKSIZE=1048576;
31  INPUT line $char32767.;
32  PUT line $varying32767. l;
33  RUN;
34 %MEND _copyFile;