SASUnit Examples  Version 1.5.0
linux/_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 -i -e 's/\r//g' "&i_cmdFile.");
26  %_xcmd("&i_cmdFile.")
27 
28 %mend _executeCMDFile;
29