BookmarkSubscribeRSS Feed
KBACHU
Fluorite | Level 6

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;

1 REPLY 1
Shmuel
Garnet | Level 18

try the next code:

 

filename ft44f004 pipe  "cscript ""C:\test.vbs""" console=min;

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

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1094 views
  • 0 likes
  • 2 in conversation