SASUnit Examples  Version 1.3.0
windows/_oscmds.sas
Go to the documentation of this file.
1 
18 %macro _oscmds;
19 
20  %global
21  g_removedir
22  g_makedir
23  g_copydir
24  g_endcommand
25  g_sasstart
26  g_splash
27  ;
28 
29  %LET g_removedir = rd /S /Q;
30  %LET g_removefile = del /S /Q;
31  %LET g_makedir = md;
32  %LET g_copydir = xcopy /E /I /Y;
33  %LET g_endcommand =%str( );
34  %LET g_sasstart ="%sysget(sasroot)/sas.exe";
35  %LET g_splash = -nosplash;
36 
37 
38 %mend _oscmds;
39