UMBC, CMSC202 Computer Science II, Spring 2007


Submit Tools

Project submission and project grading for this class are done electronically. The following tools are provided for you to submit your project and to manage your project submission. Please read these descriptions carefully.


submit

The primary tool used for project submission is submit. This command is used to submit your project for grading. This command copies the project files you specify into your submission directory which belongs to your instructor. Graders compile, execute and view your files in the submission directory.

The format of the submit command for this course is

submit cs202 <Project Name> <list-of-files> where "Project Name" is proj1, proj2, proj3, proj4 and proj5.

and "list-of-files" is the list of source files, makefile, read-me files, etc. that you wish to submit for your project.

For example, to submit the files proj1.cpp and bob.cpp for project 1, you would enter

submit cs202 proj1 proj1.cpp bob.cpp After entering this command, you should get a confirmation that submit worked okay. Specifically, a confirmation will be printed for each file Submitting proj1.cpp...OK Submitting bob.cpp...OK You may submit the same file more than once for the same project. In this case, the submit command will ask you to verify that you want to overwrite the previously submitted file. Only the most recently submitted file will be graded. For example, if you were to submit a new version of bob.cpp for proj1, you would enter submit cs202 proj1 bob.cpp and see the message It seems you have already submitted a file named bob.cpp. Do you wish to overwrite? (y/n): Enter "y" to submit a new version of bob.cpp (the old one is gone forever) or enter "n" to abort the submission.


submitls

This command allows you to list (like the Unix ls command) all of the files in your submission directory for a particular project. The format of the submitls command for this course is submitls cs202 <Project Name> where once again "Project Name" is one of proj1, proj2, etc.


submitrm

This command allows you to delete (like the Unix rm command) files from your submission directory for a particular project.

The format of the submitrm command for this course is

submitrm cs202 <Project Name> <list-of-files-to-delete> where "Project Name" is one of proj1, proj2, etc.

For example, to delete bob.cpp from your Project 1 submission directory, use the command

submitrm cs202 proj1 bob.cpp If successful, the command will respond with the message Deleting bob.cpp
If unsuccessful, the command responds with the message I can't seem to find bob.cpp. <shrug>


[
CSEE] | [CMSC202] | [Spring '07 CMSC202]             Last Modified: 11 Feb 2007 00:48:32 EST