SASUnit Examples  Version 1.5.0
unix_aix/_copydir.sas
Go to the documentation of this file.
1 
23 %macro _copyDir(i_from
24  ,i_to
25  );
26 
27  %let l_i_from = %qsysfunc(tranwrd(&i_from, %str( ), %str(\ )));
28  %let l_i_to = %qsysfunc(tranwrd(&i_to, %str( ), %str(\ )));
29 
30  %SYSEXEC(cp -R &i_from. &i_to.);
31 
32  %put &g_note.(SASUNIT): sysrc=&sysrc;
33 
34 %mend _copyDir;