Hi there, I write a simple SAS stored procedure please see below, running a command from system, after it is finished, I want to publish a message to show the procedure finished, how could I do? Second, is there anyway I could return and publish the running results from the command I run from system? Please advise, thank you!
======
data _null_;
do;
call system ("ksh /xxx/cleanup_process.sh >> /xxx/crontabjob.log 2>&1");
call system ("echo cleanup_procee.sh is finished"); /*this doesn't work*/
end;
run;