1) How to call .exe file in SAS 9.4? OR SAS Enterprise Guide?
To expand on @DanielSantos's example, I'd use this:
data _null_;
infile '<myfile.exe> 2>&1' pipe;
input; * read from output;
putlog _infile_; * show it in the log;
run;
The 2>&1 reroutes stderr output to stdout, and so all messages are caught and written to the log.
Be aware that you may not be able to do this (or use any of the suggestions) if your SAS workspace server runs on a different machine or even on a different operating system.
Call execute, call system or X statement.
For Enterprise Guide (or any other workspace server enabled SAS session), you need ALLOWXCMD option to be set.
Hi.
In addition and if you want to retrieve the output of that command you could use the pipe feature.
data _null_;
infile '<myfile.exe>' pipe;
input; * read from output;
putlog _infile_; * show it in the log;
run;
Daniel Santos @ www.cgd.pt
To expand on @DanielSantos's example, I'd use this:
data _null_;
infile '<myfile.exe> 2>&1' pipe;
input; * read from output;
putlog _infile_; * show it in the log;
run;
The 2>&1 reroutes stderr output to stdout, and so all messages are caught and written to the log.
Be aware that you may not be able to do this (or use any of the suggestions) if your SAS workspace server runs on a different machine or even on a different operating system.
Thank U
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.