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

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1118 views
  • 0 likes
  • 2 in conversation