![]() Chapter Contents |
![]() Previous |
![]() Next |
| SYSTEM |
| Category: | Special |
| Syntax | |
| Arguments | |
| Comparisons | |
| Example | |
| See Also |
Syntax |
| SYSTEM(command) |
Operating Environment Information: See
the SAS documentation for your operating environment for information on what
you can specify. ![[cautionend]](../common/images/cautend.gif)
| Comparisons |
| Example |
Execute the host command TIMEDATA if the
macro variable SYSDAY is
Friday.
data _null_;
if "&sysday"="Friday" then do;
rc=system("timedata");
end;
else rc=system("errorck");
run;
| See Also |
| CALL Routine:
| |||
| Statement:
|
![]() Chapter Contents |
![]() Previous |
![]() Next |
![]() Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.