filename unixcmd PIPE 'mkdir /tmp/foodir >/dev/null 2>&1; echo $?';
data _null_;
   infile unixcmd;
   input rc;
   put rc=;
run;