Projects are submitted electronically from the GL system
using the submit
command. The general form of the
submit
command for this class is
submit cs202 <ProjectName> <Files>
Where ProjectName is “Proj1”, “Proj2”,
“Proj3”, etc. (without the quotes), and Files is a list of files
to be submitted for grading separated by blanks. For CMSC 202, you will
create and submit a single file called ProjX.zip
, where
'X' is the number of the project that you are working on (e.g.
Proj3 if you are working on Project 3).
Before you submit your program, you must "zip" it up. That is, you must run a command that will place all of your .java source files into a single file. To begin, navigate to your project folder (e.g. Proj3).
Now, zip your .java files by executing the following command.
zip -r ProjX.zip src
You can now submit your ProjX.zip file using the following command.
submit cs202 ProjX ProjX.zip
Note: You will probably have no need to unzip the file. But, just for your information, the command to unzip the file is as follows:
unzip ProjX.zip
Using submitls
, you can verify that your files were
submitted. The general form of the submitls
command for
this class is
submitls cs202 ProjX