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.
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.