SASUnit Examples  Version 1.5.0
unix_aix/_executecmdfile.sas
Go to the documentation of this file.
1 
21 %macro _executeCMDFile(i_cmdFile
22  );
23 
24  %_xcmd(chmod u+x "&i_cmdFile.")
25  %_xcmd(sed -e 's/\r//g' "&i_cmdFile." > ~/temp.; mv ~/temp. "&i_cmdFile.");
26  %_xcmd("&i_cmdFile.")
27 
28 %mend _executeCMDFile;
29