1. Read the manual.
    File type: ps
  2. Edit your ~/.kshrc to include the following
    # Override the ACES II version
    #ACES_VERSION=""
    . ~rjbprogs/kshrc
    
  3. change your working directory to a local disk
    tmpdir=/scr_1/tmp/$(uname -n).$(whoami).$$
    mkdir $tmpdir
    cd $tmpdir
    
  4. create a soft link to the GENBAS file
    ln -s ~rjbprogs/Basis/GENBAS .
    
  5. run the program and copy the output to your home directory
    xaces2 > out
    cp out ~/sio2.out
    
  6. remove the temporary scratch files
    rm -rf /scr_1/tmp/$(uname -n).$(whoami).$$/*
    
A sample loadlever script
aces2@qtp.ufl.edu