SASUnit Examples  Version 1.3.0
windows/_xcmd.sas
Go to the documentation of this file.
1 
21 %macro _xcmd(i_cmd);
22 
23  %local xwait xsync xmin;
24  %let xwait=%sysfunc(getoption(xwait));
25  %let xsync=%sysfunc(getoption(xsync));
26  %let xmin =%sysfunc(getoption(xmin));
27 
28  options noxwait xsync xmin;
29 
30  %SYSEXEC &i_cmd;
31 
32  options &xwait &xsync &xmin;
33 
34 %mend _xcmd;
35