SAS서버에 저장되어 있는 파일의 내용을 SAS Client를 이용해서 간단히 읽어 볼 수 있습니다.
아래 내용은 SAS서버의 "/tmp"폴더에 저장되어 있는 파일 목록을 확인 할 수 있고, "file.txt"라는 파일을 읽어서 로그에 기록하도록 합니다.
%macro doit(command); filename p pipe &command lrecl=32767; data _null_; infile p; input; put _infile_; run; %mend; %doit("ls -al /tmp");
data temp; infile '/tmp/file.txt' truncover; input myvar $ 1-200; run;
data _null_; set temp; file log; put myvar; run;
... View more