BookmarkSubscribeRSS Feed
milts
Pyrite | Level 9
i want to get the status of my servers (object spawner, share server, etc) which resides in unix and transferring them to a windows client.

code looks like this:

rsubmit;
filename mylog "../my.log";
proc printto log=myfile;
x "../ObjectSpawner";
x "./ObjectSpawner.sh status";
proc download infile=mylog outfile="..\my.log";run;
endrsubmit;

this just returns to the log info about the execution of proc printto statement. what i want is to get also the message from the x command which prints the status of the server.

can this be attained? or i'm just dreaming haha!

thanks a lot!
3 REPLIES 3
milts
Pyrite | Level 9
to simplify...

is it possible to save results invoked using the x command to the sas log?

thanks
LinusH
Tourmaline | Level 20
X statement just executes stuff. It's primary use is not get information into SAS.
Maybe you can try to use FILENAME PIPE for this?
Or save the output of your script to a separate file, which could download and/or append to the original log file.

/Linus
Data never sleeps
milts
Pyrite | Level 9
yeah thanks! i just redirected the x command to a text file then download the file which is from unix going to windows.

thanks!

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
  • 3 replies
  • 1062 views
  • 0 likes
  • 2 in conversation