SASUnit Examples  Version 1.5.0
linux/_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 = rm -r -f;
30  %LET g_removefile = rm;
31  %LET g_makedir = mkdir;
32  %LET g_copydir = cp -R;
33  %LET g_endcommand =%str(;);
34  %_xcmd(umask 0033);
35  %LET g_sasstart ="%sysfunc(pathname(sasroot))/bin/sas_%sysget(SASUNIT_LANGUAGE)";
36  %LET g_splash =;
37 
38 %mend _oscmds;
39