How can I pipe a output of vbs script to a file? I am using below from SAS EG, but doesnt seems to be working.
filename ft44f004 pipe "cscript ""C:\test.vbs""" console=min;
try the next code:
filename out_file '... any path and file name ...';
data _NULL_;
infile ft44f004 truncover;
input _infile_; /* _infile_ is a saved word, contains the input buffer */
file out_file;
put _infile_;
run;
Shmuel
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
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.
Browse our catalog!