Is there a way to run a one-liner in sas, or do I have to create a file? I'm looking for something like the -e flag in perl.
|
|
|
|
|
|
|
My favourite is using the -stdio option Either:
Then start typing. Or ...
|
||
|
|
|
|
sas -initstmt '%put hello world ; endsas ;' sas -initstmt 'proc print data=sashelp.class; run ;' Off course this could also be: sas -initstmt '%inc large_program.sas;endsas;' Henrik |
||
|
|
|
|
Hi, The Unix version of SAS was ported from MVS years ago and to make a long story short, the SAS executable does not import from STDIN. To make this work in Unix, merely alter slightly the previous suggestion into something like:
Hope this is helpful, Mark |
||
|
|
|
Never having used sas, what I might try is something like:
Oftentimes applications will let you specify '-' as a file to have it read from STDIN. And 'echo' just prints its arguments out, and the | connects them together. |
||
|
|
