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