SASUnit Examples  Version 1.5.0
unix_aix/_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 003);
35  %let g_sasstart ="%sysfunc(pathname(sasroot))/sasexe/sas";
36  %let g_splash =;
37 
38 %mend _oscmds;
39