Monday, August 1, 2011

Running SAS on Unix

Run SAS program in the background and allow for disconnection:
nohup sas <sas program name> &
    -nohup tells process to continue to run even if connection is terminated
    -& runs the process in the background

To check on processes:
ps

No comments:

Post a Comment