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!
... View more