mirror of
https://github.com/sasjs/core.git
synced 2026-01-15 12:30:06 +00:00
chore: updating docs
This commit is contained in:
15
all.sas
15
all.sas
@@ -2177,6 +2177,7 @@ Usage:
|
|||||||
@details Creates a new version of a file either encoded or decoded using
|
@details Creates a new version of a file either encoded or decoded using
|
||||||
Base64. Inspired by this post by Michael Dixon:
|
Base64. Inspired by this post by Michael Dixon:
|
||||||
https://support.selerity.com.au/hc/en-us/articles/223345708-Tip-SAS-and-Base64
|
https://support.selerity.com.au/hc/en-us/articles/223345708-Tip-SAS-and-Base64
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
|
|
||||||
filename tmp temp;
|
filename tmp temp;
|
||||||
@@ -2200,16 +2201,18 @@ Usage:
|
|||||||
put _infile_;
|
put _infile_;
|
||||||
run;
|
run;
|
||||||
|
|
||||||
@param inref= Fileref of the input file (should exist)
|
@param [in] inref= Fileref of the input file (should exist)
|
||||||
@param outref= Output filref. If it does not exist, it is created.
|
@param [out] outref= Output fileref. If it does not exist, it is created.
|
||||||
@param action= (ENCODE) The action to take. Valid values:
|
@param [in] action= (ENCODE) The action to take. Valid values:
|
||||||
@li ENCODE Convert the file to base64 format
|
@li ENCODE - Convert the file to base64 format
|
||||||
@li DECODE Decode the file from base64 format
|
@li DECODE - Decode the file from base64 format
|
||||||
|
|
||||||
|
@version 9.2
|
||||||
|
@author Allan Bowe, source: https://github.com/sasjs/core
|
||||||
|
|
||||||
<h4> SAS Macros </h4>
|
<h4> SAS Macros </h4>
|
||||||
@li mp_abort.sas
|
@li mp_abort.sas
|
||||||
|
|
||||||
@version 9.2
|
|
||||||
|
|
||||||
**/
|
**/
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
@details Creates a new version of a file either encoded or decoded using
|
@details Creates a new version of a file either encoded or decoded using
|
||||||
Base64. Inspired by this post by Michael Dixon:
|
Base64. Inspired by this post by Michael Dixon:
|
||||||
https://support.selerity.com.au/hc/en-us/articles/223345708-Tip-SAS-and-Base64
|
https://support.selerity.com.au/hc/en-us/articles/223345708-Tip-SAS-and-Base64
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
|
|
||||||
filename tmp temp;
|
filename tmp temp;
|
||||||
@@ -27,16 +28,18 @@
|
|||||||
put _infile_;
|
put _infile_;
|
||||||
run;
|
run;
|
||||||
|
|
||||||
@param inref= Fileref of the input file (should exist)
|
@param [in] inref= Fileref of the input file (should exist)
|
||||||
@param outref= Output filref. If it does not exist, it is created.
|
@param [out] outref= Output fileref. If it does not exist, it is created.
|
||||||
@param action= (ENCODE) The action to take. Valid values:
|
@param [in] action= (ENCODE) The action to take. Valid values:
|
||||||
@li ENCODE Convert the file to base64 format
|
@li ENCODE - Convert the file to base64 format
|
||||||
@li DECODE Decode the file from base64 format
|
@li DECODE - Decode the file from base64 format
|
||||||
|
|
||||||
|
@version 9.2
|
||||||
|
@author Allan Bowe, source: https://github.com/sasjs/core
|
||||||
|
|
||||||
<h4> SAS Macros </h4>
|
<h4> SAS Macros </h4>
|
||||||
@li mp_abort.sas
|
@li mp_abort.sas
|
||||||
|
|
||||||
@version 9.2
|
|
||||||
|
|
||||||
**/
|
**/
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user