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!

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
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
  • 3 replies
  • 812 views
  • 0 likes
  • 2 in conversation