UMBC CMSC 202, Computer Science II, Fall 1999
Project Submission Guidelines
Some guidelines for using the submit command in CMSC 202.
- The class name is "cs202".
- The project names are "Proj1", "Proj2",
"Proj3", "Proj4". Notice that the names begin
with capital letters.
-
Example: if the name of your project 1 file is "Proj1.c",
then you
can issue the following command to submit project 1:
submit cs202 Proj1 Proj1.c
- You can submit as often as you like. So, don't wait until
11pm of the due date to submit for the first time. You can submit
"unfinished" versions of your programs.
- The date command on UNIX will tell you what time
the system thinks it is.
- After you have submitted your project for the last time,
do not use the submit command --- even to resubmmit an identical
file. We will use the modification dates of the files submitted
to determine if the project was submitted on time.
- Do not submit the output of your program in a typescript
file unless specifically requested.
- You should submit files with an associated makefile
so that someone issuing the
command "make" will successfully compile your program.
- You can use the submitls command to list the
files you have submitted. For example:
submitls cs202 Proj1
- You can use the submitrm command to remove files
you submitted previously. For example, if you submitted a file
called "P1.c" and you want to remove it and submit a file called
"Proj1.c" instead, you can do the following to remove "P1.c" and
submit "Proj1.c":
submitrm cs202 Proj1 P1.c
submit cs202 Proj1 Proj1.c
UCS Help on Using Submit