The handin Command


Programs and other files can be submitted for grading electronically using the handin command. The syntax of the handin command is as follows:

handin.<course>.<section>  <assignment>   <filelist>
where
<course> is the number of the course (215)
<section> is the number of your section
<assignment> is the number of the assignment
<filelist> is a list of the files to be handed in
For example, a student in 215 section 1 could hand in files prog3.c, list.c, and list.h for assignment 3 with the command
handin.215.1  3  prog3.c list.c list.h
Note that the complete command name in this example is handin.215.1, so it can contain no blanks. Wild cards in file names are allowed, but directory names are not. Thus all files in the current directory could be handed in for assignment 3 by using the command
handin.215.1  3  *
but not
handin.215.1  3  .
As an additional example, all files ending in .c or .h in the current directory could be handed in by
     handin.215.1  3  *.c  *.h
Notes: