The script does not manipulate SAS datasets; it operates only on macro variables and the system environment.
1 Code Block
%SYSEXEC
Explanation : Defines a macro variable 'path'. Then uses %sysexec to pass commands to the operating system: 'cd' to change directory and 'setenv' to define the PWD environment variable.
Copied!
%let path=;
%sysexec cd &path;
%sysexec setenv PWD &path;
1
%let path=;
2
%sysexec cd &path;
3
%sysexec setenv PWD &path;
4
This material is provided "as is" by We Are Cas. There are no warranties, expressed or implied, as to merchantability or fitness for a particular purpose regarding the materials or code contained herein. We Are Cas is not responsible for errors in this material as it now exists or will exist, nor does We Are Cas provide technical support for it.
« Using %SYSEXEC is the most direct way for the SAS Macro facility to communicate with the operating system without starting a DATA step. This technique is often used to prepare the environment—such as creating directories or setting system flags—before the main SAS processing begins. »
SAS and all other SAS Institute Inc. product or service names are registered trademarks or trademarks of SAS Institute Inc. in the USA and other countries. ® indicates USA registration. WeAreCAS is an independent community site and is not affiliated with SAS Institute Inc.
This site uses technical and analytical cookies to improve your experience.
Read more.