1
0
mirror of https://github.com/sasjs/core.git synced 2025-12-11 06:24:35 +00:00

chore: updating the docs for mm_spkexport.sas

This commit is contained in:
Allan Bowe
2021-06-08 20:09:23 +03:00
parent 506cf1812f
commit 67a81b2690
2 changed files with 10 additions and 6 deletions

View File

@@ -11769,7 +11769,8 @@ filename __shake clear;
put '%let mmxpass="Mars321";';
run;
filename myref "%sysfunc(pathname(work))/mmxexport.sh";
filename myref "%sysfunc(pathname(work))/mmxexport.sh"
permission='A::u::rwx,A::g::r-x,A::o::---';
%mm_spkexport(metaloc=%str(/my/meta/loc)
,outref=myref
,secureref=tmp
@@ -11778,7 +11779,8 @@ filename __shake clear;
Alternatively, call without inputs to create a function style output
filename myref "/tmp/mmscript.sh";
filename myref "/tmp/mmscript.sh"
permission='A::u::rwx,A::g::r-x,A::o::---';
%mm_spkexport(metaloc=%str(/my/meta/loc)
outref=myref
,cmdoutloc=%str(/tmp)
@@ -11864,7 +11866,7 @@ run;
,msg=%str(syscc=&syscc)
)
%mend;/**
%mend mm_spkexport;/**
@file mm_tree.sas
@brief Returns all folders / subfolder content for a particular root
@details Shows all members and SubTrees for a particular root.

View File

@@ -24,7 +24,8 @@
put '%let mmxpass="Mars321";';
run;
filename myref "%sysfunc(pathname(work))/mmxexport.sh";
filename myref "%sysfunc(pathname(work))/mmxexport.sh"
permission='A::u::rwx,A::g::r-x,A::o::---';
%mm_spkexport(metaloc=%str(/my/meta/loc)
,outref=myref
,secureref=tmp
@@ -33,7 +34,8 @@
Alternatively, call without inputs to create a function style output
filename myref "/tmp/mmscript.sh";
filename myref "/tmp/mmscript.sh"
permission='A::u::rwx,A::g::r-x,A::o::---';
%mm_spkexport(metaloc=%str(/my/meta/loc)
outref=myref
,cmdoutloc=%str(/tmp)
@@ -119,4 +121,4 @@ run;
,msg=%str(syscc=&syscc)
)
%mend;
%mend mm_spkexport;