Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Go to the folder (in your machine) that contains all (and only) the files you are submitting for your homework.
    cd <your local homework directory> 
     
  2. Zip the files you want to submit. Here ’n’ refers to the homework number.
    zip -r hw_n.zip *

  3. Use sftp to copy the zip file to CLEAR.
    sftp <your-netid>@ssh.clear.rice.edu
    <your-password>
     
  4. You should have the sftp prompt ’sftp>’ now. Go to to your comp311 directory.
    cd comp311
     
  5. Create a new folder with the name hw_n for this homework number n
    mkdir  hw_n
     
  6. Now move your zip file to this directory:
    cd hw_n
    put hw_n.zip
    The sftp app should indicate that your zip file has been copied to the folder hw_n.
     
  7. Log into your Clear account.
    ssh <your-netid>@ssh.clear.rice.edu
    <your-password>
     
  8. Go the folder hw_n
    cd hw_n
     
  9. Unzip the file
    unzip hw_n.zip
     
  10. Delete the zip file
    rm hw_n.zip
     
  11. Go one level up, to the your comp311 folder.
    cd ..
     
  12. Turnin the folder hw_n
    turnin COMP311-FALL15-F15:hw_n
    This should show all your files being added to the Subversion repository.
     
  13. Your submission is complete.