Reg:Shell X command
Actually i want to execute sheel script if the day=6
i am doing like this
data _null_;
if &day=6;
then do;
x 'new.sh';
x 'old.sh';
end;
run;
If i keep like this is was working on all the days acutally &day i my macro variable
from a dataset it was not resoving properly how can i do it.
Hi,
My_SAS since the comparison is onmacro variable the condition should be macr condition and would involve macr if condition:-
data _null_;
%if &day=6;
%then %do;
x 'new.sh';
x 'old.sh';
%end;
run;
try this..
actually is there any way for the x command to execute the shell script if it satisfy the contion i have given
I have not tested this, but just looking at your code, it appears you have an extra semicolon. Try it without the semicolon after the "6". In other words:
if &day = 6 then do;
Karl
X statment cannot be executed from in a datastep. It can be executed conditionally through a macro as shown above.
In a datastep, use call system, or call execute with the x command inside.
data _null_;
if &day=6 then do;
call system('/path/to/new.sh');
call execute('x /path/to/old.sh');
end;
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.