This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "Run SAS", | |
"type": "shell", | |
"linux": { | |
"command": "<sas startup scriptZ>.sh", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%macro embed(f); | |
%local p ref rc fid; | |
%let p = %sysfunc(findc(&f,/\:.)); | |
%if &p %then %let rc = %sysfunc(filename(ref, &f)); | |
%else %let ref = &f; | |
%let fid = %sysfunc(fopen(&ref)); | |
%if &fid>0 %then | |
%do %while(%sysfunc(fread(&fid))=0); | |
%let rc = %sysfunc(fget(&fid, line, 32767)); | |
&line |
OlderNewer