Skip to content

Instantly share code, notes, and snippets.

@joedougherty
Created September 15, 2014 20:03
Show Gist options
  • Save joedougherty/6de435a9fa8d6639a54f to your computer and use it in GitHub Desktop.
Save joedougherty/6de435a9fa8d6639a54f to your computer and use it in GitHub Desktop.
encode.sas
filename pwfile '~/tmp-passwd';
proc pwencode in="&sysparm" out=pwfile; run;
data _null_;
file stdout;
infile pwfile obs=1 length=l;
input @;
input @1 line $varying1024. l;
put line;
run;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment