File
|
File Handle
|
---|---|
STDIN
|
0
|
STDOUT
|
1
|
STDERR
|
2
|
'stockmkt.exe -all'
filename listing pipe 'dir *.sas 2>&1';
filename stocks pipe 'stockmkt.exe -all' console=min; data report; infile stocks; input stock $ open close change; run; proc print; var stock open close change; sum change; title 'Stock Market Report'; run;