Created
September 15, 2014 20:03
-
-
Save joedougherty/6de435a9fa8d6639a54f to your computer and use it in GitHub Desktop.
encode.sas
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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