You're welcome :)
'Unix home directory' is where your personal files are, which are not accessible to other users (except admins). The typical directory is '/home/username', but on WRDS it is '/home/yourschool/username', where username is the username you use to log in; yourschool is an abbreviation for your university's name.
The first link you give uses a path with a period (./eventus.txt); this look like a relative path, but I am not sure relative to which directory.
The second link is most straightforward (at least for me, it uses an absolute path):
libname keep '/home/school/username/eventus';
%let out_ds = keep.results;
The libname assigns 'keep' to a directory 'eventus' in the user's home directory. This eventus directory isn't there by default, so you need to create it. If that is not appealing at this point, you may want to use '/home/school/username' (whatever that is for you), without the eventus part (this should work without the need to create a directory).
If you don't know what your home directory is, you can run:
And look in the log; it will show a message like (in the beginning):
NOTE: AUTOEXEC processing beginning; file is /home/ufl/imp/autoexec.sas.
After the libname assignment to 'keep' you can upload/download/refer to datasets in 'keep'.
best regards,
Joost