vote up 2 vote down star

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.

flag

62% accept rate

4 Answers

vote up 2 vote down check

My favourite is using the -stdio option

Either:

sas -stdio

Then start typing. Or ...

echo "proc options; run;" | sas -stdio
link|flag
vote up 1 vote down

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

link|flag
vote up 4 vote down

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:

echo "your SAS code" > temp;sas -sysin temp

Hope this is helpful,

Mark

link|flag
There are further command line options to control where the output and log go. – John Fouhy Nov 6 '08 at 23:25
vote up 0 vote down

Never having used sas, what I might try is something like:

echo <insert sas code here> | sas --execute-file -

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.