Difference between revisions of "Handin"

From Computer Science
Jump to: navigation, search
(The handin program)
(The handin program)
Line 5: Line 5:
 
By itself, executing handin with no additional command line parameters will display all the class assignments and their due dates.  It will also display the last time a specific assignment was submitted, so that you can check your submissions.
 
By itself, executing handin with no additional command line parameters will display all the class assignments and their due dates.  It will also display the last time a specific assignment was submitted, so that you can check your submissions.
  
   <big>> handin -c cs256
+
   <big>> handin
 
   Assignments:
 
   Assignments:
 
   h1, due 2020-01-17 23:59:59
 
   h1, due 2020-01-17 23:59:59

Revision as of 18:17, 12 January 2020

The handin program

Handin is a program for checking out and handing in assignments.

Displaying Outstanding Assignments

By itself, executing handin with no additional command line parameters will display all the class assignments and their due dates. It will also display the last time a specific assignment was submitted, so that you can check your submissions.

 > handin
 Assignments:
 h1, due 2020-01-17 23:59:59
   - Last submitted on Sun Jan 12 13:16:16 2020
 h2, due 2020-01-24 23:59:59

 If your account is not a class account, you can still check, checkout and handin assignments for a specific class using the -c option followed by the class name in question:
 handin -c cs456

would select the cs456 class and then display the assignments for the class.

Checking Out an Assignment

Assignments can be copied to your directory using the -C or --checkout option followed by the name of the assignment, i.e.

 handin -C h4

would copy the h4 assignment directory to your account where you can then begin working on your assignment.

Submitting Your Assignments

When you have done some work on your assignment, you an submit your assignment using handin followed by the name of the assignment directory (this should be done in the parent directory where the assignment directory is.) i.e.:

 handin h4

will submit the h4 assignment. You can submit your assignment as many times as you like until the due time has passed. If an assignment allows late submissions, they will be submitted into the late submissions directory. You should submit early and often, as submitting your assignments can be used as a form of backup.


Grading Notes

Checking Your Work With --hwcheck